Browse Source

fixed undefined buildtype for multi-configuration generators

cl-refactor
debris 10 years ago
parent
commit
197b603c98
  1. 2
      CMakeLists.txt

2
CMakeLists.txt

@ -67,7 +67,7 @@ function(createBuildInfo)
if (CMAKE_BUILD_TYPE)
set(_cmake_build_type ${CMAKE_BUILD_TYPE})
else()
set(_cmake_build_type "undefined")
set(_cmake_build_type "${CMAKE_CFG_INTDIR}")
endif()
# Generate header file containing useful build information

Loading…
Cancel
Save