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
this happens when adding as a external project in a multi-config generator
the following fixes this
if(NOTCMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE Release CACHESTRING"" FORCE)
message(STATUS"CMAKE_BUILD_TYPE is not specified, default to Release. Note that this is only relevant for single-configuration generators (such as Makefile Generators and Ninja).")
endif()
The text was updated successfully, but these errors were encountered:
this happens when adding as a external project in a multi-config generator
the following fixes this
The text was updated successfully, but these errors were encountered: