Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
5c753bee8d33960cbbd4ab842438be8547863671
[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 INCLUDE(CTestConfig.txt)
23
24 ### Enable tests
25 ENABLE_TESTING()
26 INCLUDE(CTest)
27 INCLUDE(Dart)
28
29
30 INCLUDE(CTestList.txt)
31
32 # Install the CTest configuration in the build dir
33 configure_file(CTestCustom.ctest ${CMAKE_BINARY_DIR}/CTestCustom.ctest
34 COPYONLY)
35
36 #SET (CMAKE_COMPILER_IS_GNUCXX 1)
37 #SET (CMAKE_COMPILER_IS_GNUCC 1)
38