From 197b603c98b3cb5356f24988019bf4180d7838e7 Mon Sep 17 00:00:00 2001 From: debris Date: Thu, 8 Jan 2015 16:44:18 +0100 Subject: [PATCH] fixed undefined buildtype for multi-configuration generators --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a055a5c8d..a3a5702f1 100644 --- a/CMakeLists.txt +++ b/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