X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d06623a2341c647686560c413cd5fc08d59bb488..3af68c8fc4729e179162729f14d89be334937b3b:/buildtools/Cmake/CMakeLists.txt?ds=inline diff --git a/buildtools/Cmake/CMakeLists.txt b/buildtools/Cmake/CMakeLists.txt index ae769e5c36..f6d54cf519 100644 --- a/buildtools/Cmake/CMakeLists.txt +++ b/buildtools/Cmake/CMakeLists.txt @@ -9,10 +9,15 @@ OPTION( SIMGRID_WITH_PTHREAD "Use pthread as context support." OFF ) OPTION( SIMGRID_USE_GTNETS "Build SimGrid with GTNets support." OFF ) +### Display the version +find_program(CAT NAMES cat) +exec_program("${CAT}" ARGS "version" OUTPUT_VARIABLE VERSION) +message("svn version: " ${VERSION}) + + ### Check 32bits or 64bits INCLUDE (CheckTypeSize) CHECK_TYPE_SIZE("long" SIZEOF_LONG) -#message("SIZEOF_LONG : ${SIZEOF_LONG}") IF(SIZEOF_LONG EQUAL 4) SET(ARCH_32_BITS 1) ELSE(SIZEOF_LONG EQUAL 4)