We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When compiling in release mode from source :
cmake -B build cmake --build build
It says "Building in RELEASE mode" but all files go to build\*\Debug
build\*\Debug
Then the install command cmake --install build fails because it looks for files in build\*\Release
cmake --install build
build\*\Release
NA
Windows 11 cmake 3.31.0
The text was updated successfully, but these errors were encountered:
While circumventing the problem, I had to manually add the installation folders in the PATH variable. Could it be done automatically?
Sorry, something went wrong.
I managed to build and install on Windows with the following command:
cmake -B build cmake --build build --config Release cmake --build build --target install --config Release
No branches or pull requests
Describe the bug
When compiling in release mode from source :
It says "Building in RELEASE mode" but all files go to
build\*\Debug
Then the install command
cmake --install build
fails because it looks for files inbuild\*\Release
To reproduce
NA
System info
Windows 11
cmake 3.31.0
The text was updated successfully, but these errors were encountered: