Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Typo in Linux build command? #13

Open
snhirsch opened this issue Nov 10, 2022 · 1 comment
Open

Typo in Linux build command? #13

snhirsch opened this issue Nov 10, 2022 · 1 comment

Comments

@snhirsch
Copy link

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
Copy link

I had to change it from:

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

to

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants