From: maier Date: Tue, 23 Oct 2012 15:26:31 +0000 (+0000) Subject: Bugfix X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4ce83cd07f70169940f0245fe05c5de1b2730d6e;p=dealii-svn.git Bugfix git-svn-id: https://svn.dealii.org/branches/branch_cmake@27183 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-1/CMakeLists.txt b/deal.II/examples/step-1/CMakeLists.txt index 976c1653fb..4ab42c160f 100644 --- a/deal.II/examples/step-1/CMakeLists.txt +++ b/deal.II/examples/step-1/CMakeLists.txt @@ -59,9 +59,11 @@ MARK_AS_ADVANCED(CMAKE_BUILD_TYPE deal.II_DIR) # Set build type: IF(DEBUG_MODE) - SET(CMAKE_BUILD_TYPE "Debug" CACHE FORCE "") + SET(CMAKE_BUILD_TYPE "Debug" CACHE FORCE + "Please set DEBUG_MODE in CMakeLists.txt") ELSE() - SET(CMAKE_BUILD_TYPE "Release" CACHE FORCE "") + SET(CMAKE_BUILD_TYPE "Release" CACHE FORCE + "Please set DEBUG_MODE in CMakeLists.txt") ENDIF() PROJECT(${TARGET})