Open snhirsch opened 2 years ago
On Ubuntu 18.04 this command is not valid:
cmake -G "Unix Makefiles" --build ..
The double-dash on the build token seems spurious and it works without it, e.g.:
cmake -G "Unix Makefiles" build ..
I had to change it from:
to
cmake -G "Unix Makefiles" .. cmake --build .
On Ubuntu 18.04 this command is not valid:
cmake -G "Unix Makefiles" --build ..
The double-dash on the build token seems spurious and it works without it, e.g.:
cmake -G "Unix Makefiles" build ..