default to building a debug version
[mussa.git] / CMakeLists.txt
1 PROJECT(mussa)
2
3 ENABLE_TESTING()
4 # try to include our cmake modules
5 SET (CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/makelib)
6
7 IF(NOT CMAKE_BUILD_TYPE)
8   SET (CMAKE_BUILD_TYPE Debug CACHE STRING
9       "Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel."
10       FORCE)
11 ENDIF(NOT CMAKE_BUILD_TYPE)
12
13 # all of our source files al relative to the root of our project
14 INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR})
15 ADD_SUBDIRECTORY( alg )
16 ADD_SUBDIRECTORY( gui )
17 ADD_SUBDIRECTORY( py )
18 ADD_SUBDIRECTORY( qui )
19