4lex4 / scantailor-libs-build

Building scantailor and its dependencies
55 stars 18 forks source link

Typo in Linux build command? #13

Open snhirsch opened 2 years ago

snhirsch commented 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 ..

rramphal commented 10 months ago

I had to change it from:

cmake -G "Unix Makefiles" --build ..

to

cmake -G "Unix Makefiles" ..
cmake --build .