Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Only one file to configure ctest
[simgrid.git] / buildtools / Cmake / CMakeLists.txt
1 cmake_minimum_required(VERSION 2.6)
2 PROJECT(SimgridProject)
3
4 # --------------------- OPTIONS OF THE PROJECT -----------------------------
5 OPTION( BUILD_SHARED_LIBS "Build SimGrid with shared libraries." ON )
6 OPTION( SIMGRID_BUILD_EXAMPLES "Build SimGrid examples." ON )
7 OPTION( SIMGRID_BUILD_DOCUMENTATION "Build the users manual documentation." OFF )
8 OPTION( SIMGRID_WITH_PTHREAD "Use pthread as context support." OFF )
9
10 OPTION( SIMGRID_USE_GTNETS "Build SimGrid with GTNets support." OFF )
11
12 ### Check 32bits or 64bits
13 INCLUDE (CheckTypeSize)
14 CHECK_TYPE_SIZE("int" SIZEOF_INT)
15
16 IF(SIZEOF_INT EQUAL 4)
17   SET(ARCH_32_BITS 1)
18 ELSE(SIZEOF_INT EQUAL 4)
19   SET(ARCH_64_BITS 1)
20 ENDIF(SIZEOF_INT EQUAL 4)
21
22
23 ### Enable tests
24 ENABLE_TESTING()
25 INCLUDE(CTest)
26 INCLUDE(Dart)
27
28 INCLUDE(CTestCustom.ctest)
29 INCLUDE(CTestList.txt)
30
31 # Install the CTest configuration in the build dir
32 configure_file(CTestCustom.ctest ${CMAKE_BINARY_DIR}/CTestCustom.ctest
33 COPYONLY)
34
35 #SET (CMAKE_COMPILER_IS_GNUCXX 1)
36 #SET (CMAKE_COMPILER_IS_GNUCC 1)
37