Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
This file is the core of the Cmake stuff
[simgrid.git] / buildtools / Cmake / Cmake / CMakeLists.txt
diff --git a/buildtools/Cmake/Cmake/CMakeLists.txt b/buildtools/Cmake/Cmake/CMakeLists.txt
deleted file mode 100644 (file)
index 05d3e55..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-cmake_minimum_required(VERSION 2.6)
-PROJECT(SimgridProject)
-
-# --------------------- OPTIONS OF THE PROJECT -----------------------------
-OPTION( BUILD_SHARED_LIBS "Build SimGrid with shared libraries." ON )
-OPTION( SIMGRID_BUILD_EXAMPLES "Build SimGrid examples." ON )
-OPTION( SIMGRID_BUILD_DOCUMENTATION "Build the users manual documentation." OFF )
-OPTION( SIMGRID_WITH_PTHREAD "Use pthread as context support." OFF )
-
-OPTION( SIMGRID_USE_GTNETS "Build SimGrid with GTNets support." OFF )
-
-### Check 32bits or 64bits
-INCLUDE (CheckTypeSize)
-CHECK_TYPE_SIZE("int" SIZEOF_INT)
-
-IF(SIZEOF_INT EQUAL 4)
-  SET(ARCH_32_BITS 1)
-ELSE(SIZEOF_INT EQUAL 4)
-  SET(ARCH_64_BITS 1)
-ENDIF(SIZEOF_INT EQUAL 4)
-
-
-### Enable tests
-ENABLE_TESTING()
-INCLUDE(CTest)
-INCLUDE(Dart)
-
-# Configure Ctest
-SET (UPDATE_TYPE "svn")
-SET (CTEST_CUSTOM_MAXIMUM_PASSED_TEST_OUTPUT_SIZE 100000)
-SET (CTEST_CUSTOM_MAXIMUM_FAILED_TEST_OUTPUT_SIZE 100000)
-
-INCLUDE(CTestConfig.txt)
-INCLUDE(CTestList.txt)
-
-#SET (CMAKE_COMPILER_IS_GNUCXX 1)
-#SET (CMAKE_COMPILER_IS_GNUCC 1)
-