Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Include the svn version in the build name
[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("long" SIZEOF_LONG)
15 #message("SIZEOF_LONG : ${SIZEOF_LONG}")
16 IF(SIZEOF_LONG EQUAL 4)
17   SET(ARCH_32_BITS 1)
18 ELSE(SIZEOF_LONG EQUAL 4)
19   SET(ARCH_32_BITS 0)
20 ENDIF(SIZEOF_LONG EQUAL 4)
21
22
23 ### Enable tests
24 INCLUDE(CTestConfig.cmake)
25 ENABLE_TESTING()
26 INCLUDE(CTest)
27 INCLUDE(Dart)
28 INCLUDE(CTestList.txt)
29
30 # Install the CTest configuration in the build dir
31 configure_file(CTestConfig.cmake ${CMAKE_BINARY_DIR}/CTestCustom.ctest COPYONLY)
32
33 #SET (CMAKE_COMPILER_IS_GNUCXX 1)
34 #SET (CMAKE_COMPILER_IS_GNUCC 1)
35