Browse Source

fixed ETH_BUILD_TYPE being undefined #669 #728

cl-refactor
Marek Kotewicz 10 years ago
parent
commit
fc41c3ac48
  1. 2
      CMakeLists.txt

2
CMakeLists.txt

@ -64,7 +64,7 @@ function(createBuildInfo)
endif ()
#cmake build type may be not specified when using msvc
if (${CMAKE_BUILD_TYPE})
if (CMAKE_BUILD_TYPE)
set(_cmake_build_type ${CMAKE_BUILD_TYPE})
else()
set(_cmake_build_type "undefined")

Loading…
Cancel
Save