Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add ModelChecker build type
authorPaul Bédaride <paul.bedaride@gmail.com>
Thu, 6 Dec 2012 09:52:20 +0000 (10:52 +0100)
committerPaul Bédaride <paul.bedaride@gmail.com>
Thu, 6 Dec 2012 09:52:20 +0000 (10:52 +0100)
CMakeLists.txt

index 2ed2fea..333c53f 100644 (file)
@@ -1,4 +1,13 @@
 cmake_minimum_required(VERSION 2.6)
+
+SET(CMAKE_BUILD_TYPE ModelChecker)
+IF(CMAKE_BUILD_TYPE STREQUAL "ModelChecker") 
+  SET(enable_coverage ON)
+  SET(enable_model-checking ON)
+  SET(enable_lua ON)
+  SET(enable_compile_optimization OFF)
+ENDIF()
+
 ### Need to set rc ccompiler before enable language
 if(WIN32)
   SET(CMAKE_RC_COMPILER "windres")