We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d30e7b commit 62fbe1fCopy full SHA for 62fbe1f
CMakeLists.txt
@@ -1,4 +1,12 @@
1
cmake_minimum_required(VERSION 2.8)
2
+
3
+# This needs to be before "project(..)".
4
+if(NOT DEFINED CMAKE_BUILD_TYPE)
5
+ set(CMAKE_BUILD_TYPE "Release" CACHE STRING "Choose the type of build, options are: Debug Release")
6
+endif()
7
+message(STATUS "Build type: ${CMAKE_BUILD_TYPE}")
8
9
10
project(MOZART CXX)
11
12
ENABLE_TESTING()
0 commit comments