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
The result is that it does a debug build, no matter what you pass to CMAKE_BUILD_TYPE.
Relevant code:
string(TOLOWER "${ROCRTST_BLD_TYPE}" tmp) if("${tmp}" STREQUAL release) set(BUILD_TYPE "Release") set(ISDEBUG 0) else() set(BUILD_TYPE "Debug") set(ISDEBUG 1) endif()
and
set(CMAKE_BUILD_TYPE ${BUILD_TYPE})
Suffice to say this is a really bad idea.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The result is that it does a debug build, no matter what you pass to CMAKE_BUILD_TYPE.
Relevant code:
and
Suffice to say this is a really bad idea.
The text was updated successfully, but these errors were encountered: