forked from organicmaps/organicmaps
[cmake] Show build type.
This commit is contained in:
parent
929af9660c
commit
160cd67fd4
1 changed files with 5 additions and 3 deletions
|
@ -76,11 +76,13 @@ endif()
|
|||
|
||||
if ("${CMAKE_BUILD_TYPE}" STREQUAL "Debug")
|
||||
add_definitions(-DDEBUG)
|
||||
elseif ("${CMAKE_BUILD_TYPE}" STREQUAL "Release")
|
||||
add_definitions(-DRELEASE)
|
||||
else()
|
||||
message(FATAL_ERROR "Unknown build type: " ${CMAKE_BUILD_TYPE})
|
||||
endif()
|
||||
|
||||
if ("${CMAKE_BUILD_TYPE}" STREQUAL "Release")
|
||||
add_definitions(-DRELEASE)
|
||||
endif()
|
||||
message("Build type: " ${CMAKE_BUILD_TYPE})
|
||||
|
||||
if (NOT SKIP_TESTS)
|
||||
set(SKIP_TESTS FALSE)
|
||||
|
|
Loading…
Add table
Reference in a new issue