You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Our CMakeLists.txt file accepts CMAKE_BUILD_TYPE values of TEST, DEBUG, and RELEASE (all case-sensitive). However, the standard ones for CMake are Debug, Release, RelWithDebInfo and MinSizeRel. If we retain the TEST option (which would make sense, as that way we get coverage information) then it shouldn't be in all caps (i.e., it should be Test instead).
The text was updated successfully, but these errors were encountered:
Our CMakeLists.txt file accepts
CMAKE_BUILD_TYPE
values ofTEST
,DEBUG
, andRELEASE
(all case-sensitive). However, the standard ones for CMake areDebug
,Release
,RelWithDebInfo
andMinSizeRel
. If we retain theTEST
option (which would make sense, as that way we get coverage information) then it shouldn't be in all caps (i.e., it should beTest
instead).The text was updated successfully, but these errors were encountered: