Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of scm.gforge.inria.fr:/gitroot/simgrid/simgrid
[simgrid.git] / CMakeLists.txt
1 cmake_minimum_required(VERSION 2.6) # Java requires 2.8.6
2 message(STATUS "Cmake version ${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}.${CMAKE_PATCH_VERSION}")
3 set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_HOME_DIRECTORY}/tools/cmake/Modules)
4
5 project(SimGrid C CXX)
6
7 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
8 #     Check for the compiler        #
9 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
10
11 ### Need to set rc ccompiler before enable language
12 if(WIN32)
13   SET(CMAKE_RC_COMPILER "windres")
14 endif()
15
16 ## 
17 ## Check the C/C++ standard that we need
18 ##   See also tools/cmake/GCCFlags.cmake that sets our paranoid warning flags
19 if (MSVC)
20   message("-- You are compiling SimGrid with MicroSoft Visual C. Good luck.")
21
22   set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D_SCL_SECURE_NO_WARNINGS")
23   set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -D_SCL_SECURE_NO_WARNINGS")
24 else() # gcc or clang
25   INCLUDE(CheckCCompilerFlag)
26   CHECK_C_COMPILER_FLAG(-fstack-cleaner HAVE_C_STACK_CLEANER)
27
28   ## Request full debugging flags
29   set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g3")
30   set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -g3")
31   set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -g")
32
33   if (CMAKE_COMPILER_IS_GNUCC)    
34     if (CMAKE_CXX_COMPILER_VERSION VERSION_LESS "4.7")
35       message(FATAL_ERROR
36               "SimGrid needs at least g++ version 4.7 to compile but you have ${CMAKE_CXX_COMPILER_VERSION}."
37               "You need a sufficient support of c++11 to compile SimGrid.")
38     endif()
39   endif()
40
41   ## We need a decent support of the c++11 standard
42   include(CheckCXXCompilerFlag)
43   CHECK_CXX_COMPILER_FLAG("-std=gnu++11" COMPILER_SUPPORTS_CXX11)
44   if(COMPILER_SUPPORTS_CXX11)
45     set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=gnu++11")
46   else() 
47     message(FATAL_ERROR 
48             "The compiler ${CMAKE_CXX_COMPILER} (v${CMAKE_CXX_COMPILER_VERSION}) has no C++11 support. "
49             "Please use a decent C++ compiler.")
50   endif()
51
52   ### And we need C11 standard, too
53   include(CheckCCompilerFlag)
54   CHECK_C_COMPILER_FLAG("-std=gnu11" COMPILER_SUPPORTS_C11)
55   if(COMPILER_SUPPORTS_C11)
56     set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=gnu11")
57   else()
58     message(FATAL_ERROR 
59             "The compiler ${CMAKE_C_COMPILER} (v${CMAKE_C_COMPILER_VERSION}) has no C11 support. "
60             "Please use a decent C compiler "
61             "(note that c++11 support of ${CMAKE_CXX_COMPILER} seems ok).")
62   endif()
63   if(APPLE AND (CMAKE_C_COMPILER_VERSION VERSION_LESS "4.6"))
64       ### gcc 4.[1-5] cannot compile ucontext on OSX
65       message(STATUS "Ucontext can't be used with this version of gcc (must be greater than 4.5)")
66       set(HAVE_UCONTEXT_H 0)
67   endif()
68 endif() # NOT MSVC
69
70 ### SMPI vs. Fortran
71 if ((NOT DEFINED enable_smpi OR enable_smpi) AND NOT APPLE) # smpi is enabled by default
72   # Call enable_language(Fortran) in order to load the build rules for
73   # this language, needed by teshsuite/smpi/mpich-test/.  Use
74   # CMAKE_FORCE_Fortran_COMPILER to bypass checks for a working
75   # compiler (smpiff don't exist at configure time).
76   include(CMakeForceCompiler)
77   if(NOT COMMAND CMAKE_FORCE_Fortran_COMPILER)
78     MACRO(CMAKE_FORCE_Fortran_COMPILER compiler id)
79       SET(CMAKE_Fortran_COMPILER "${compiler}")
80       SET(CMAKE_Fortran_COMPILER_ID_RUN TRUE)
81       SET(CMAKE_Fortran_COMPILER_ID ${id})
82       SET(CMAKE_Fortran_COMPILER_WORKS TRUE)
83       SET(CMAKE_Fortran_COMPILER_FORCED TRUE)
84
85       # Set old compiler id variables.
86       IF("${CMAKE_Fortran_COMPILER_ID}" MATCHES "GNU")
87         SET(CMAKE_COMPILER_IS_GNUG77 1)
88       ENDIF("${CMAKE_Fortran_COMPILER_ID}" MATCHES "GNU")
89     ENDMACRO(CMAKE_FORCE_Fortran_COMPILER)
90   endif()
91   CMAKE_FORCE_Fortran_COMPILER(smpiff smpiff)
92   enable_language(Fortran OPTIONAL)
93 endif()
94
95 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
96 #     Build the version number      #
97 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
98
99 set(SIMGRID_VERSION_MAJOR "3")
100 set(SIMGRID_VERSION_MINOR "13")
101 set(SIMGRID_VERSION_PATCH "0")
102 set(SIMGRID_VERSION_EXTRA "-devel") # Extra words to add to version string (e.g. -rc1)
103
104 set(SIMGRID_VERSION_DATE  "2015") # Year for copyright information
105
106 if(${SIMGRID_VERSION_PATCH} EQUAL "0")
107   set(release_version "${SIMGRID_VERSION_MAJOR}.${SIMGRID_VERSION_MINOR}")
108 else()
109   set(release_version "${SIMGRID_VERSION_MAJOR}.${SIMGRID_VERSION_MINOR}.${SIMGRID_VERSION_PATCH}")
110 endif()
111
112 set(SIMGRID_VERSION_STRING "SimGrid version ${release_version}${SIMGRID_VERSION_EXTRA}")
113 set(SIMGRID_VERSION_BANNER "SIMGRID_VERSION_STRING\\nCopyright (c) 2004-${SIMGRID_VERSION_DATE}. The Simgrid Team.")
114 if(release)
115   set(SIMGRID_VERSION_BANNER "${SIMGRID_VERSION_BANNER}\\nRelease build")
116 else()
117   set(SIMGRID_VERSION_BANNER "${SIMGRID_VERSION_BANNER}\\nDevelopment build")
118 endif()
119
120 set(libsimgrid_version "${release_version}")
121 set(libsimgrid-java_version "${release_version}")
122
123 ### SET THE LIBRARY EXTENSION 
124 if(APPLE) #MAC
125   set(LIB_EXE "dylib")
126 else()
127   if(WIN32) #WINDOWS
128     set(LIB_EXE "a")
129     set(BIN_EXE ".exe")
130   else() #UNIX
131     set(LIB_EXE "so")
132   endif()
133 endif()
134
135 exec_program("${CMAKE_LINKER} --version" OUTPUT_VARIABLE "LINKER_VERSION")
136 string(REGEX MATCH "[0-9].[0-9]*" LINKER_VERSION "${LINKER_VERSION}")
137
138 ### Find programs and paths
139 FIND_PROGRAM(GCOV_PATH gcov)
140 include(FindPerl)
141 if(NOT PERL_EXECUTABLE)
142   message(FATAL_ERROR "-- SimGrid cannot be compiled without Perl installed -- sorry. Bailling out.")
143 endif()
144
145 if (APPLE)
146   set(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/lib")
147   set(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
148 endif()
149
150 ### Set some variables for Cmake
151 SET(LIBRARY_OUTPUT_PATH ${CMAKE_BINARY_DIR}/lib)
152
153 ### Compute the include paths
154 set(INCLUDES
155   ${CMAKE_HOME_DIRECTORY}
156   ${CMAKE_HOME_DIRECTORY}/include
157   ${CMAKE_HOME_DIRECTORY}/src
158   ${CMAKE_HOME_DIRECTORY}/src/include
159   ${CMAKE_BINARY_DIR}
160   ${CMAKE_BINARY_DIR}/include
161   ${CMAKE_BINARY_DIR}/src
162   )
163
164 if(WIN32)
165   set(INCLUDES ${INCLUDES} ${CMAKE_HOME_DIRECTORY}/include/xbt ${CMAKE_HOME_DIRECTORY}/src/xbt) #for win32_ucontext.[ch]
166 endif()
167
168 if(NOT CMAKE_CROSSCOMPILING AND EXISTS /usr/include/)
169   set(INCLUDES ${INCLUDES} /usr/include/)
170 endif()
171
172 ### Check 32bits or 64bits
173 IF(CMAKE_SIZEOF_VOID_P EQUAL 4)
174   SET(ARCH_32_BITS 1)
175 ELSE()
176   SET(ARCH_32_BITS 0)
177 ENDIF()
178
179 if(WIN32)
180
181   #Need env INCLUDE
182   set(CMAKE_INCLUDE_WIN "${CMAKE_C_COMPILER}")
183   set(CMAKE_LIB_WIN "${CMAKE_C_COMPILER}")
184   string(REGEX REPLACE "/bin/gcc.*" "/include"  CMAKE_INCLUDE_WIN "${CMAKE_INCLUDE_WIN}")
185   string(REGEX REPLACE "/bin/gcc.*" "/lib"  CMAKE_LIB_WIN "${CMAKE_LIB_WIN}")
186   set(INCLUDES ${INCLUDES} ${CMAKE_INCLUDE_WIN})
187   unset(CMAKE_INCLUDE_WIN)
188
189   find_program(NSIS_PROGRAM NAMES makensi)
190   set(NSIS_WIN_VERSION $ENV{PROCESSOR_ARCHITEW6432})
191   if(NSIS_WIN_VERSION MATCHES "")
192     set(NSIS_WIN_VERSION $ENV{PROCESSOR_ARCHITECTURE})
193   endif()
194   if(${NSIS_WIN_VERSION})
195     string(TOLOWER ${NSIS_WIN_VERSION} NSIS_WIN_VERSION)
196   endif()
197
198   set(_XBT_WIN32 1)
199
200   message(STATUS "C_COMPILER                    ${CMAKE_C_COMPILER} ${CMAKE_C_COMPILER_VERSION}")
201   message(STATUS "CXX_COMPILER                  ${CMAKE_CXX_COMPILER} ${CMAKE_CXX_COMPILER_VERSION}")
202   message(STATUS "CMAKE_RC_COMPILER             ${CMAKE_RC_COMPILER}")
203   message(STATUS "LIB                           ${CMAKE_LIB_WIN}")
204   message(STATUS "MAKE_PROGRAM                  ${CMAKE_MAKE_PROGRAM}")
205   message(STATUS "CMAKE_BUILD_TOOL              ${CMAKE_BUILD_TOOL}")
206   message(STATUS "LINKER                        ${CMAKE_LINKER}")
207   message(STATUS "CMAKE_GENERATOR               ${CMAKE_GENERATOR}")
208   message(STATUS "GNUC                          ${CMAKE_COMPILER_IS_GNUCC}")
209
210 endif()
211
212 include_directories(${INCLUDES})
213
214 ### Setup Options
215 include(${CMAKE_HOME_DIRECTORY}/tools/cmake/Option.cmake)
216
217 ### Determine the assembly flavor that we need today
218 include(CMakeDetermineSystem)
219 IF(CMAKE_SYSTEM_PROCESSOR MATCHES ".86|AMD64|amd64")
220   IF(${ARCH_32_BITS})
221     message(STATUS "System processor: i686 (${CMAKE_SYSTEM_PROCESSOR}, 32 bits)")
222     set(PROCESSOR_i686 1)
223   ELSE()
224     message(STATUS "System processor: x86_64 (${CMAKE_SYSTEM_PROCESSOR}, 64 bits)")
225     set(PROCESSOR_x86_64 1)
226   ENDIF()
227   if (MSVC)
228     message(STATUS "Disable fast raw contextes on Microsoft Visual.")
229   else()
230     set(HAVE_RAWCTX 1)
231   endif()
232
233 ENDIF()
234
235 if(ARCH_32_BITS)
236   set(MPI_ADDRESS_SIZE 4)
237 else()
238   set(MPI_ADDRESS_SIZE 8)
239 endif()
240
241 include(CheckFunctionExists)
242 include(CheckTypeSize)
243 include(CheckIncludeFile)
244 include(CheckIncludeFiles)
245 include(CheckLibraryExists)
246 include(CheckSymbolExists)
247
248 include(FindGraphviz)
249 include(FindLibSigc++)
250
251 if(enable_java)
252   find_package(Java REQUIRED COMPONENTS Runtime Development)
253   find_package(JNI REQUIRED)
254   message("-- [Java] JNI found: ${JNI_FOUND}")
255   message("-- [Java] JNI include dirs: ${JNI_INCLUDE_DIRS}")
256   if(enable_maintainer_mode)
257     find_package(SWIG REQUIRED)
258     include(UseSWIG)
259     message("-- [Java] Swig found: ${SWIG_FOUND} (version ${SWIG_VERSION})")
260   endif()
261   set(HAVE_Java 1)
262 endif()
263 if(enable_scala)
264   find_package(Scala REQUIRED)
265   message("-- [Scala] scalac found: ${SCALA_COMPILE}")
266   set(HAVE_Scala 1)
267 endif()
268 if(enable_lua)
269   include(FindLuaSimgrid)
270 endif()
271
272 set(HAVE_NS3 0)
273 if(enable_ns3)
274   include(FindNS3)
275   if (NOT HAVE_NS3)
276     message(FATAL_ERROR "Cannot find NS3. Please install it (apt-get install ns3 libns3-dev) or disable that cmake option")
277   endif()
278 endif()
279
280 find_package(Boost 1.48)
281 if(Boost_FOUND)
282   include_directories(${Boost_INCLUDE_DIRS})
283 else()
284   if(APPLE)
285     message(FATAL_ERROR "Failed to find Boost libraries (Try to install them with 'sudo fink install boost1.53.nopython')")
286   else()
287     message(FATAL_ERROR "Failed to find Boost libraries."
288                         "Did you install libboost-dev and libboost-context-dev?"
289                         "(libboost-context-dev is optional)")
290   endif()
291 endif()
292
293 # Try again to see if we have libboost-context
294 find_package(Boost 1.42 COMPONENTS context)
295 set(Boost_FOUND 1) # We don't care of whether this component is missing
296
297 if(Boost_FOUND AND Boost_CONTEXT_FOUND)
298   # We should use feature detection for this instead:
299   if (Boost_VERSION LESS 105600)
300     message("Found Boost.Context API v1")
301     set(HAVE_BOOST_CONTEXT 1)
302   else()
303     message("Found Boost.Context API v2")
304     set(HAVE_BOOST_CONTEXT 2)
305   endif()
306 else()
307   message ("   boost        : found.")
308   message ("   boost-context: missing. Install libboost-context-dev for this optional feature.")
309   set(HAVE_BOOST_CONTEXT 0)
310 endif()
311
312 # Checks for header libraries functions.
313 CHECK_LIBRARY_EXISTS(dl      dlopen                  "" HAVE_DLOPEN_IN_LIBDL)
314 CHECK_LIBRARY_EXISTS(execinfo backtrace              "" HAVE_BACKTRACE_IN_LIBEXECINFO)
315 CHECK_LIBRARY_EXISTS(pthread pthread_create          "" HAVE_PTHREAD)
316 CHECK_LIBRARY_EXISTS(pthread sem_init                "" HAVE_SEM_INIT_LIB)
317 CHECK_LIBRARY_EXISTS(pthread sem_open                "" HAVE_SEM_OPEN_LIB)
318 CHECK_LIBRARY_EXISTS(pthread sem_timedwait           "" HAVE_SEM_TIMEDWAIT_LIB)
319 CHECK_LIBRARY_EXISTS(pthread pthread_mutex_timedlock "" HAVE_MUTEX_TIMEDLOCK_LIB)
320 CHECK_LIBRARY_EXISTS(rt      clock_gettime           "" HAVE_POSIX_GETTIME)
321
322 if(CMAKE_SYSTEM_NAME MATCHES "Darwin")
323   set(CMAKE_REQUIRED_DEFINITIONS "-D_XOPEN_SOURCE=700 -D_DARWIN_C_SOURCE")
324 elseif(MINGW)
325   add_definitions(-D__USE_MINGW_ANSI_STDIO=1)
326   set(CMAKE_REQUIRED_DEFINITIONS "-D__USE_MINGW_ANSI_STDIO=1")
327 else()
328   set(CMAKE_REQUIRED_DEFINITIONS "-D_GNU_SOURCE")
329 endif()
330
331 CHECK_INCLUDE_FILES("stdlib.h;stdarg.h;string.h;float.h" STDC_HEADERS)
332 CHECK_INCLUDE_FILE("valgrind/valgrind.h" HAVE_VALGRIND_VALGRIND_H)
333 CHECK_INCLUDE_FILE("socket.h" HAVE_SOCKET_H)
334 CHECK_INCLUDE_FILE("stat.h" HAVE_STAT_H)
335 CHECK_INCLUDE_FILE("sys/stat.h" HAVE_SYS_STAT_H)
336 CHECK_INCLUDE_FILE("windows.h" HAVE_WINDOWS_H)
337 CHECK_INCLUDE_FILE("errno.h" HAVE_ERRNO_H)
338 CHECK_INCLUDE_FILE("unistd.h" HAVE_UNISTD_H)
339 CHECK_INCLUDE_FILE("execinfo.h" HAVE_EXECINFO_H)
340 CHECK_INCLUDE_FILE("signal.h" HAVE_SIGNAL_H)
341 CHECK_INCLUDE_FILE("sys/time.h" HAVE_SYS_TIME_H)
342 CHECK_INCLUDE_FILE("sys/param.h" HAVE_SYS_PARAM_H)
343 CHECK_INCLUDE_FILE("sys/sysctl.h" HAVE_SYS_SYSCTL_H)
344 CHECK_INCLUDE_FILE("time.h" HAVE_TIME_H)
345 CHECK_INCLUDE_FILE("string.h" HAVE_STRING_H)
346 CHECK_INCLUDE_FILE("ucontext.h" HAVE_UCONTEXT_H)
347 CHECK_INCLUDE_FILE("stdio.h" HAVE_STDIO_H)
348 CHECK_INCLUDE_FILE("linux/futex.h" HAVE_FUTEX_H)
349
350 CHECK_FUNCTION_EXISTS(gettimeofday HAVE_GETTIMEOFDAY)
351 CHECK_FUNCTION_EXISTS(nanosleep HAVE_NANOSLEEP)
352 CHECK_FUNCTION_EXISTS(getdtablesize HAVE_GETDTABLESIZE)
353 CHECK_FUNCTION_EXISTS(sysconf HAVE_SYSCONF)
354 CHECK_FUNCTION_EXISTS(readv HAVE_READV)
355 CHECK_FUNCTION_EXISTS(popen HAVE_POPEN)
356 CHECK_FUNCTION_EXISTS(signal HAVE_SIGNAL)
357
358 CHECK_SYMBOL_EXISTS(snprintf stdio.h HAVE_SNPRINTF)
359 CHECK_SYMBOL_EXISTS(vsnprintf stdio.h HAVE_VSNPRINTF)
360 CHECK_SYMBOL_EXISTS(asprintf stdio.h HAVE_ASPRINTF)
361 CHECK_SYMBOL_EXISTS(vasprintf stdio.h HAVE_VASPRINTF)
362
363 if(MINGW) 
364   # The detection of asprintf fails on MinGW, assumingly because it's
365   # defined as an inline function in stdio.h instead of a regular
366   # function. So force the result to be 1 despite of the test.
367   set(HAVE_SNPRINTF 1)
368   set(HAVE_VSNPRINTF 1)
369   set(HAVE_ASPRINTF 1)
370   set(HAVE_VASPRINTF 1)
371 endif()
372
373 CHECK_FUNCTION_EXISTS(makecontext HAVE_MAKECONTEXT)
374 CHECK_FUNCTION_EXISTS(process_vm_readv HAVE_PROCESS_VM_READV)
375
376 CHECK_FUNCTION_EXISTS(mmap HAVE_MMAP)
377
378 #Check if __thread is defined
379 execute_process(
380   COMMAND "${CMAKE_C_COMPILER} ${CMAKE_HOME_DIRECTORY}/tools/cmake/test_prog/prog_thread_storage.c"
381   WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
382   RESULT_VARIABLE HAVE_thread_storage_run
383   )
384
385 if(HAVE_thread_storage_run)
386   set(HAVE_THREAD_LOCAL_STORAGE 1)
387 else()
388   set(HAVE_THREAD_LOCAL_STORAGE 0)
389 endif()
390
391 # Our usage of mmap is Linux-specific (flag MAP_ANONYMOUS), but kFreeBSD uses a GNU libc
392 IF(HAVE_MMAP AND
393    NOT "${CMAKE_SYSTEM}" MATCHES "Linux" AND 
394    NOT "${CMAKE_SYSTEM}" MATCHES "kFreeBSD" AND 
395    NOT "${CMAKE_SYSTEM}" MATCHES "GNU" AND 
396    NOT  "${CMAKE_SYSTEM}" MATCHES "Darwin")
397   SET(HAVE_MMAP 0)
398   message(STATUS "Warning: MMAP is thought as non functional on this architecture (${CMAKE_SYSTEM})")
399 ENDIF()
400
401 if(HAVE_MMAP AND HAVE_THREAD_LOCAL_STORAGE)
402   SET(HAVE_MMALLOC 1)
403 else()
404   SET(HAVE_MMALLOC 0)
405 endif()
406
407
408 if(WIN32) # Those files are not detected despite being present
409   set(HAVE_UCONTEXT_H 1)
410   set(HAVE_MAKECONTEXT 1)
411 endif()
412
413 set(CONTEXT_UCONTEXT 0)
414 set(CONTEXT_THREADS 0)
415
416 if(enable_jedule)
417   set(HAVE_JEDULE 1)
418 endif()
419
420 if(enable_latency_bound_tracking)
421   SET(HAVE_LATENCY_BOUND_TRACKING 1)
422 else()
423   SET(HAVE_LATENCY_BOUND_TRACKING 0)
424 endif()
425
426 if(enable_mallocators)
427   SET(MALLOCATOR_IS_WANTED 1)
428 else()
429   SET(MALLOCATOR_IS_WANTED 0)
430 endif()
431
432 if(enable_model-checking AND HAVE_MMALLOC)
433   SET(HAVE_MC 1)
434   SET(MMALLOC_WANT_OVERRIDE_LEGACY 1)
435   include(FindLibunwind)
436   include(FindLibdw)
437 else()
438   if(enable_model-checking)
439     message(STATUS "Warning: support for model-checking has been disabled because HAVE_MMALLOC is false")
440   endif()
441   SET(HAVE_MC 0)
442   SET(HAVE_MMALLOC 0)
443   SET(MMALLOC_WANT_OVERRIDE_LEGACY 0)
444 endif()
445
446 if(enable_smpi)
447   include(FindGFortran)
448   #really checks for objdump for privatization
449   find_package(BinUtils QUIET)
450   SET(HAVE_SMPI 1)
451
452   if( NOT "${CMAKE_OBJDUMP}" MATCHES "CMAKE_OBJDUMP-NOTFOUND" AND HAVE_MMAP)
453     SET(HAVE_PRIVATIZATION 1)
454   else()
455     SET(HAVE_PRIVATIZATION 0)
456   endif()
457 endif()
458
459 #--------------------------------------------------------------------------------------------------
460 ### Check for GNU dynamic linker
461 CHECK_INCLUDE_FILE("dlfcn.h" HAVE_DLFCN_H)
462 if (HAVE_DLFCN_H)
463     if(HAVE_DLOPEN_IN_LIBDL)
464       set(DL_LIBRARY "-ldl")
465     endif(HAVE_DLOPEN_IN_LIBDL)
466     execute_process(COMMAND ${CMAKE_C_COMPILER} ${CMAKE_HOME_DIRECTORY}/tools/cmake/test_prog/prog_gnu_dynlinker.c ${DL_LIBRARY} -o test_gnu_ld
467       WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
468       OUTPUT_VARIABLE HAVE_GNU_LD_compil
469     )
470     if(HAVE_GNU_LD_compil)
471       set(HAVE_GNU_LD 0)
472       message(STATUS "Warning: test program toward GNU ld failed to compile:")
473       message(STATUS "${HAVE_GNU_LD_comp_output}")
474     else()
475
476       execute_process(COMMAND ./test_gnu_ld
477           WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
478           RESULT_VARIABLE HAVE_GNU_LD_run
479           OUTPUT_VARIABLE var_exec
480       )
481
482       if(NOT HAVE_GNU_LD_run)
483         set(HAVE_GNU_LD 1)
484         message(STATUS "We are using GNU dynamic linker")
485       else()
486         set(HAVE_GNU_LD 0)
487         message(STATUS "Warning: error while checking for GNU ld:")
488         message(STATUS "Test output: '${var_exec}'")
489         message(STATUS "Exit status: ${HAVE_GNU_LD_run}")
490       endif()
491       file(REMOVE test_gnu_ld)
492     endif()
493 endif()
494
495
496 #--------------------------------------------------------------------------------------------------
497 ### Initialize of CONTEXT THREADS
498
499 if(HAVE_PTHREAD)
500   ### Test that we have a way to create semaphores
501
502   if(HAVE_SEM_OPEN_LIB)
503     execute_process(COMMAND ${CMAKE_C_COMPILER} ${CMAKE_HOME_DIRECTORY}/tools/cmake/test_prog/prog_sem_open.c -lpthread -o sem_open
504     WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
505     OUTPUT_VARIABLE HAVE_SEM_OPEN_compil
506     )
507
508     # Test sem_open by compiling:
509     if(HAVE_SEM_OPEN_compil)
510       set(HAVE_SEM_OPEN 0)
511       message(STATUS "Warning: sem_open not compilable")
512       message(STATUS "HAVE_SEM_OPEN_comp_output: ${HAVE_SEM_OPEN_comp_output}")
513     else()
514       set(HAVE_SEM_OPEN 1)
515       message(STATUS "sem_open is compilable")
516     endif()
517
518     # If we're not crosscompiling, we check by executing the program:
519     if (HAVE_SEM_OPEN AND NOT CMAKE_CROSSCOMPILING)
520       execute_process(COMMAND ./sem_open
521       WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
522       RESULT_VARIABLE HAVE_SEM_OPEN_run
523       OUTPUT_VARIABLE var_compil
524       )
525       if (NOT HAVE_SEM_OPEN_run)
526         set(HAVE_SEM_OPEN 1)
527         message(STATUS "sem_open is executable")
528       else()
529         set(HAVE_SEM_OPEN 0)
530         if(EXISTS "${CMAKE_BINARY_DIR}/sem_open")
531           message(STATUS "Bin ${CMAKE_BINARY_DIR}/sem_open exists!")
532         else()
533           message(STATUS "Bin ${CMAKE_BINARY_DIR}/sem_open not exists!")
534         endif()
535         message(STATUS "Warning: sem_open not executable")
536         message(STATUS "Compilation output: '${var_compil}'")
537         message(STATUS "Exit result of sem_open: ${HAVE_SEM_OPEN_run}")
538       endif()
539     endif()
540     file(REMOVE sem_open)
541
542   else()
543     set(HAVE_SEM_OPEN 0)
544   endif()
545
546   if(HAVE_SEM_INIT_LIB)
547     execute_process(COMMAND ${CMAKE_C_COMPILER} ${CMAKE_HOME_DIRECTORY}/tools/cmake/test_prog/prog_sem_init.c -lpthread -o sem_init
548     WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
549     RESULT_VARIABLE HAVE_SEM_INIT_run OUTPUT_VARIABLE HAVE_SEM_INIT_compil)
550
551     # Test sem_init by compiling:
552     if(HAVE_SEM_INIT_compil)
553       set(HAVE_SEM_INIT 0)
554       message(STATUS "Warning: sem_init not compilable")
555       message(STATUS "HAVE_SEM_INIT_comp_output: ${HAVE_SEM_OPEN_comp_output}")
556     else()
557       set(HAVE_SEM_INIT 1)
558       message(STATUS "sem_init is compilable")
559     endif()
560
561     # If we're not crosscompiling, we check by executing the program:
562     if (HAVE_SEM_INIT AND NOT CMAKE_CROSSCOMPILING)
563       execute_process(COMMAND ./sem_init
564       WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
565       RESULT_VARIABLE HAVE_SEM_INIT_run
566       OUTPUT_VARIABLE var_compil
567       )
568       if (NOT HAVE_SEM_INIT_run)
569         set(HAVE_SEM_INIT 1)
570         message(STATUS "sem_init is executable")
571       else()
572         set(HAVE_SEM_INIT 0)
573         if(EXISTS "${CMAKE_BINARY_DIR}/sem_init")
574           message(STATUS "Bin ${CMAKE_BINARY_DIR}/sem_init exists!")
575         else()
576           message(STATUS "Bin ${CMAKE_BINARY_DIR}/sem_init not exists!")
577         endif()
578         message(STATUS "Warning: sem_init not executable")
579         message(STATUS "Compilation output: '${var_compil}'")
580         message(STATUS "Exit result of sem_init: ${HAVE_SEM_INIT_run}")
581       endif()
582     endif()
583     file(REMOVE sem_init)
584   endif()
585
586   if(NOT HAVE_SEM_OPEN AND NOT HAVE_SEM_INIT)
587     message(FATAL_ERROR "Semaphores are not usable (neither sem_open nor sem_init is both compilable and executable), but they are mandatory to threads (you may need to mount /dev).")
588   endif()
589
590   ### Test that we have a way to timewait for semaphores
591
592   if(HAVE_SEM_TIMEDWAIT_LIB)
593
594     execute_process(
595       COMMAND "${CMAKE_C_COMPILER} ${CMAKE_HOME_DIRECTORY}/tools/cmake/test_prog/prog_sem_timedwait.c -lpthread"
596       WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
597       OUTPUT_VARIABLE HAVE_SEM_TIMEDWAIT_run
598       )
599
600     if(HAVE_SEM_TIMEDWAIT_run)
601       set(HAVE_SEM_TIMEDWAIT 0)
602       message(STATUS "timedwait not compilable")
603     else()
604       set(HAVE_SEM_TIMEDWAIT 1)
605       message(STATUS "timedwait is compilable")
606     endif()
607   endif()
608
609   ### HAVE_MUTEX_TIMEDLOCK
610
611   if(HAVE_MUTEX_TIMEDLOCK_LIB)
612
613     execute_process(
614       COMMAND "${CMAKE_C_COMPILER} ${CMAKE_HOME_DIRECTORY}/tools/cmake/test_prog/prog_mutex_timedlock.c -lpthread"
615       WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
616       OUTPUT_VARIABLE HAVE_MUTEX_TIMEDLOCK_run
617       )
618
619     if(HAVE_MUTEX_TIMEDLOCK_run)
620       set(HAVE_MUTEX_TIMEDLOCK 0)
621       message(STATUS "timedlock not compilable")
622     else()
623       message(STATUS "timedlock is compilable")
624       set(HAVE_MUTEX_TIMEDLOCK 1)
625     endif()
626   endif()
627 endif()
628
629 # This is needed for ucontext on MacOS X:
630 if(CMAKE_SYSTEM_NAME MATCHES "Darwin")
631   add_definitions(-D_XOPEN_SOURCE=700 -D_DARWIN_C_SOURCE)
632 endif()
633
634 if(WIN32)
635   # We always provide our own implementation of ucontext on Windows.
636   try_compile(HAVE_UCONTEXT
637     ${CMAKE_BINARY_DIR}
638     ${CMAKE_HOME_DIRECTORY}/tools/cmake/test_prog/prog_AC_CHECK_MCSC.c
639     COMPILE_DEFINITIONS _XBT_WIN32
640     INCLUDE_DIRECTORIES
641       ${CMAKE_HOME_DIRECTORY}/src/include
642       ${CMAKE_HOME_DIRECTORY}/src/xbt
643   )
644 else()
645   # We always provide our own implementation of ucontext on Windows.
646   try_compile(HAVE_UCONTEXT
647     ${CMAKE_BINARY_DIR}
648     ${CMAKE_HOME_DIRECTORY}/tools/cmake/test_prog/prog_AC_CHECK_MCSC.c)
649 endif()
650
651 #If can have both context
652
653 if(HAVE_UCONTEXT)
654   set(CONTEXT_UCONTEXT 1)
655   message("-- Support for ucontext factory")
656 endif()
657
658 if(HAVE_PTHREAD)
659   set(CONTEXT_THREADS 1)
660   message("-- Support for thread context factory")
661 endif()
662
663 ###############
664 ## GIT version check
665 ##
666 if(EXISTS ${CMAKE_HOME_DIRECTORY}/.git/)
667   execute_process(COMMAND git remote
668   COMMAND head -n 1
669   WORKING_DIRECTORY ${CMAKE_HOME_DIRECTORY}/.git/
670   OUTPUT_VARIABLE remote
671   RESULT_VARIABLE ret
672   )
673   string(REPLACE "\n" "" remote "${remote}")
674   #message(STATUS "Git remote: ${remote}")
675   execute_process(COMMAND git config --get remote.${remote}.url
676   WORKING_DIRECTORY ${CMAKE_HOME_DIRECTORY}/.git/
677   OUTPUT_VARIABLE url
678   RESULT_VARIABLE ret
679   )
680   string(REPLACE "\n" "" url "${url}")
681   #message(STATUS "Git url: ${url}")
682   if(url)
683     execute_process(COMMAND git --git-dir=${CMAKE_HOME_DIRECTORY}/.git log --pretty=oneline --abbrev-commit -1
684     WORKING_DIRECTORY ${CMAKE_HOME_DIRECTORY}/.git/
685     OUTPUT_VARIABLE GIT_VERSION
686     RESULT_VARIABLE ret
687     )
688     string(REPLACE "\n" "" GIT_VERSION "${GIT_VERSION}")
689     message(STATUS "Git version: ${GIT_VERSION}")
690     execute_process(COMMAND git --git-dir=${CMAKE_HOME_DIRECTORY}/.git log -n 1 --pretty=format:%ai .
691     WORKING_DIRECTORY ${CMAKE_HOME_DIRECTORY}/.git/
692     OUTPUT_VARIABLE GIT_DATE
693     RESULT_VARIABLE ret
694     )
695     string(REPLACE "\n" "" GIT_DATE "${GIT_DATE}")
696     message(STATUS "Git date: ${GIT_DATE}")
697     string(REGEX REPLACE " .*" "" GIT_VERSION "${GIT_VERSION}")
698     
699     execute_process(COMMAND git --git-dir=${CMAKE_HOME_DIRECTORY}/.git log --pretty=format:%H -1
700                     WORKING_DIRECTORY ${CMAKE_HOME_DIRECTORY}/.git/
701                     OUTPUT_VARIABLE SIMGRID_GITHASH
702                     RESULT_VARIABLE ret
703                     )
704     string(REPLACE "\n" "" SIMGRID_GITHASH "${SIMGRID_GITHASH}")
705                     
706   endif()
707 elseif(EXISTS ${CMAKE_HOME_DIRECTORY}/.gitversion)
708   FILE(STRINGS ${CMAKE_HOME_DIRECTORY}/.gitversion GIT_VERSION)
709 endif()
710
711 if(GIT_VERSION)
712   set(SIMGRID_VERSION_BANNER "${SIMGRID_VERSION_BANNER} at commit ${GIT_VERSION}")
713 endif()
714 if(GIT_DATE)
715   set(SIMGRID_VERSION_BANNER "${SIMGRID_VERSION_BANNER} (${GIT_DATE})")
716 endif()
717 #--------------------------------------------------------------------------------------------------
718
719 set(makecontext_CPPFLAGS_2 "")
720 if(HAVE_MAKECONTEXT OR WIN32)
721   set(makecontext_CPPFLAGS "-DTEST_makecontext")
722   if(CMAKE_SYSTEM_NAME MATCHES "Darwin")
723     set(makecontext_CPPFLAGS_2 "-D_XOPEN_SOURCE=700")
724   endif()
725
726   if(WIN32)
727     if(ARCH_32_BITS)
728       set(makecontext_CPPFLAGS "-DTEST_makecontext -D_I_X86_")
729     else()
730       set(makecontext_CPPFLAGS "-DTEST_makecontext -D_AMD64_")
731     endif()
732     set(makecontext_CPPFLAGS_2 "-D_XBT_WIN32 -I${CMAKE_HOME_DIRECTORY}/src/include -I${CMAKE_HOME_DIRECTORY}/src/xbt")
733   endif()
734
735   file(REMOVE ${CMAKE_BINARY_DIR}/conftestval)
736
737   if(CMAKE_CROSSCOMPILING)
738     set(RUN_makecontext_VAR "cross")
739     set(COMPILE_makecontext_VAR "cross")
740   else()
741     try_run(RUN_makecontext_VAR COMPILE_makecontext_VAR
742       ${CMAKE_BINARY_DIR}
743       ${CMAKE_HOME_DIRECTORY}/tools/cmake/test_prog/prog_stacksetup.c
744       COMPILE_DEFINITIONS "${makecontext_CPPFLAGS} ${makecontext_CPPFLAGS_2}"
745       )
746   endif()
747
748   if(EXISTS ${CMAKE_BINARY_DIR}/conftestval)
749     file(READ ${CMAKE_BINARY_DIR}/conftestval MAKECONTEXT_ADDR_SIZE)
750     string(REPLACE "\n" "" MAKECONTEXT_ADDR_SIZE "${MAKECONTEXT_ADDR_SIZE}")
751     string(REGEX MATCH ;^.*,;MAKECONTEXT_ADDR "${MAKECONTEXT_ADDR_SIZE}")
752     string(REGEX MATCH ;,.*$; MAKECONTEXT_SIZE "${MAKECONTEXT_ADDR_SIZE}")
753     string(REPLACE "," "" makecontext_addr "${MAKECONTEXT_ADDR}")
754     string(REPLACE "," "" makecontext_size "${MAKECONTEXT_SIZE}")
755     set(pth_skaddr_makecontext "#define pth_skaddr_makecontext(skaddr,sksize) (${makecontext_addr})")
756     set(pth_sksize_makecontext "#define pth_sksize_makecontext(skaddr,sksize) (${makecontext_size})")
757   else()
758     # message(FATAL_ERROR "makecontext is not compilable")
759   endif()
760 endif()
761
762 #--------------------------------------------------------------------------------------------------
763
764 ### check for stackgrowth
765 if (NOT CMAKE_CROSSCOMPILING)
766   try_run(RUN_makecontext_VAR COMPILE_makecontext_VAR
767     ${CMAKE_BINARY_DIR}
768     ${CMAKE_HOME_DIRECTORY}/tools/cmake/test_prog/prog_stackgrowth.c
769     RUN_OUTPUT_VARIABLE stack
770     )
771 endif()
772 if("${stack}" STREQUAL "down")
773   set(PTH_STACKGROWTH "-1")
774 elseif("${stack}" STREQUAL "up")
775   set(PTH_STACKGROWTH "1")
776 else()
777   if("${CMAKE_SYSTEM_PROCESSOR}" STREQUAL "x86_64")
778     set(PTH_STACKGROWTH "-1")
779   elseif("${CMAKE_SYSTEM_PROCESSOR}" STREQUAL "i686")
780     set(PTH_STACKGROWTH "-1")
781   else()
782     message(ERROR "Could not figure the stack direction.")
783   endif()
784 endif()
785
786 ###############
787 ## System checks
788 ##
789
790 #SG_CONFIGURE_PART([System checks...])
791 #AC_PROG_CC(xlC gcc cc) -auto
792 #AM_SANITY_CHECK -auto
793
794 #AC_PROG_MAKE_SET
795
796 #AC_CHECK_VA_COPY
797
798 set(diff_va "va_copy((d),(s))"
799   "VA_COPY((d),(s))"
800   "__va_copy((d),(s))"
801   "__builtin_va_copy((d),(s))"
802   "do { (d) = (s)\; } while (0)"
803   "do { *(d) = *(s)\; } while (0)"
804   "memcpy((void *)&(d), (void *)&(s), sizeof(s))"
805   "memcpy((void *)(d), (void *)(s), sizeof(*(s)))"
806   )
807
808 foreach(fct ${diff_va})
809   write_file("${CMAKE_HOME_DIRECTORY}/tools/cmake/test_prog/prog_va_copy.c" "#include <stdlib.h>
810 #include <stdarg.h>
811 #include <string.h>
812 #define DO_VA_COPY(d,s) ${fct}
813 void test(char *str, ...)
814 {
815   va_list ap, ap2;
816   int i;
817   va_start(ap, str);
818   DO_VA_COPY(ap2, ap);
819   for (i = 1; i <= 9; i++) {
820     int k = (int)va_arg(ap, int);
821     if (k != i)
822       abort();
823   }
824   DO_VA_COPY(ap, ap2);
825   for (i = 1; i <= 9; i++) {
826     int k = (int)va_arg(ap, int);
827     if (k != i)
828       abort();
829   }
830   va_end(ap);
831 }
832 int main(void)
833 {
834   test(\"test\", 1, 2, 3, 4, 5, 6, 7, 8, 9);
835   exit(0);
836 }"
837     )
838
839   execute_process(
840   COMMAND ${CMAKE_C_COMPILER} "${CMAKE_HOME_DIRECTORY}/tools/cmake/test_prog/prog_va_copy.c"
841   WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
842   RESULT_VARIABLE COMPILE_VA_NULL_VAR
843   OUTPUT_QUIET
844   ERROR_QUIET
845   )
846
847   if(NOT COMPILE_VA_NULL_VAR)
848     string(REGEX REPLACE "\;" "" fctbis ${fct})
849     if(${fctbis} STREQUAL "va_copy((d),(s))")
850       set(HAVE_VA_COPY 1)
851       set(ac_cv_va_copy "C99")
852       set(__VA_COPY_USE_C99 "va_copy((d),(s))")
853     endif()
854
855     if(${fctbis} STREQUAL "VA_COPY((d),(s))")
856       set(ac_cv_va_copy "GCM")
857       set(__VA_COPY_USE_GCM "VA_COPY((d),(s))")
858     endif()
859
860     if(${fctbis} STREQUAL "__va_copy((d),(s))")
861       set(ac_cv_va_copy "GCH")
862       set(__VA_COPY_USE_GCH "__va_copy((d),(s))")
863     endif()
864
865     if(${fctbis} STREQUAL "__builtin_va_copy((d),(s))")
866       set(ac_cv_va_copy "GCB")
867       set(__VA_COPY_USE_GCB "__builtin_va_copy((d),(s))")
868     endif()
869
870     if(${fctbis} STREQUAL "do { (d) = (s) } while (0)")
871       set(ac_cv_va_copy "ASS")
872       set(__VA_COPY_USE_ASS "do { (d) = (s); } while (0)")
873     endif()
874
875     if(${fctbis} STREQUAL "do { *(d) = *(s) } while (0)")
876       set(ac_cv_va_copy "ASP")
877       set(__VA_COPY_USE_ASP "do { *(d) = *(s); } while (0)")
878     endif()
879
880     if(${fctbis} STREQUAL "memcpy((void *)&(d), (void *)&(s), sizeof(s))")
881       set(ac_cv_va_copy "CPS")
882       set(__VA_COPY_USE_CPS "memcpy((void *)&(d), (void *)&(s), sizeof(s))")
883     endif()
884
885     if(${fctbis} STREQUAL "memcpy((void *)(d), (void *)(s), sizeof(*(s)))")
886       set(ac_cv_va_copy "CPP")
887       set(__VA_COPY_USE_CPP "memcpy((void *)(d), (void *)(s), sizeof(*(s)))")
888     endif()
889
890     if(NOT STATUS_OK)
891       set(__VA_COPY_USE "__VA_COPY_USE_${ac_cv_va_copy}(d, s)")
892     endif()
893     set(STATUS_OK "1")
894
895   endif()
896
897 endforeach(fct ${diff_va})
898
899 #--------------------------------------------------------------------------------------------------
900 ### check for a working snprintf
901 if(HAVE_SNPRINTF AND HAVE_VSNPRINTF OR WIN32)
902   if(WIN32)
903     #set(HAVE_SNPRINTF 1)
904     #set(HAVE_VSNPRINTF 1)
905   endif()
906
907   if(CMAKE_CROSSCOMPILING)
908     set(RUN_SNPRINTF_FUNC "cross")
909     #set(PREFER_PORTABLE_SNPRINTF 1)
910   else()
911     try_run(RUN_SNPRINTF_FUNC_VAR COMPILE_SNPRINTF_FUNC_VAR
912       ${CMAKE_BINARY_DIR}
913       ${CMAKE_HOME_DIRECTORY}/tools/cmake/test_prog/prog_snprintf.c
914       )
915   endif()
916
917   if(CMAKE_CROSSCOMPILING)
918     set(RUN_VSNPRINTF_FUNC "cross")
919     set(PREFER_PORTABLE_VSNPRINTF 1)
920   else()
921     try_run(RUN_VSNPRINTF_FUNC_VAR COMPILE_VSNPRINTF_FUNC_VAR
922       ${CMAKE_BINARY_DIR}
923       ${CMAKE_HOME_DIRECTORY}/tools/cmake/test_prog/prog_vsnprintf.c
924       )
925   endif()
926
927   set(PREFER_PORTABLE_SNPRINTF 0)
928   if(RUN_VSNPRINTF_FUNC_VAR MATCHES "FAILED_TO_RUN")
929     set(PREFER_PORTABLE_SNPRINTF 1)
930   endif()
931   if(RUN_SNPRINTF_FUNC_VAR MATCHES "FAILED_TO_RUN")
932     set(PREFER_PORTABLE_SNPRINTF 1)
933   endif()
934 endif()
935
936 ### check for asprintf function familly
937 if(HAVE_ASPRINTF)
938   SET(simgrid_need_asprintf "")
939   SET(NEED_ASPRINTF 0)
940 else()
941   SET(simgrid_need_asprintf "#define SIMGRID_NEED_ASPRINTF 1")
942   SET(NEED_ASPRINTF 1)
943 endif()
944
945 if(HAVE_VASPRINTF)
946   SET(simgrid_need_vasprintf "")
947   SET(NEED_VASPRINTF 0)
948 else()
949   SET(simgrid_need_vasprintf "#define SIMGRID_NEED_VASPRINTF 1")
950   SET(NEED_VASPRINTF 1)
951 endif()
952
953 ### check for addr2line
954
955 find_path(ADDR2LINE NAMES addr2line     PATHS NO_DEFAULT_PATHS  )
956 if(ADDR2LINE)
957   set(ADDR2LINE "${ADDR2LINE}/addr2line")
958 endif()
959
960 ### File to create
961
962 configure_file("${CMAKE_HOME_DIRECTORY}/src/context_sysv_config.h.in"
963   "${CMAKE_BINARY_DIR}/src/context_sysv_config.h" @ONLY IMMEDIATE)
964
965 SET( CMAKEDEFINE "#cmakedefine" )
966 configure_file("${CMAKE_HOME_DIRECTORY}/tools/cmake/src/internal_config.h.in" "${CMAKE_BINARY_DIR}/src/internal_config.h" @ONLY IMMEDIATE)
967 configure_file("${CMAKE_BINARY_DIR}/src/internal_config.h" "${CMAKE_BINARY_DIR}/src/internal_config.h" @ONLY IMMEDIATE)
968 configure_file("${CMAKE_HOME_DIRECTORY}/include/simgrid_config.h.in" "${CMAKE_BINARY_DIR}/include/simgrid_config.h" @ONLY IMMEDIATE)
969
970 set(top_srcdir "${CMAKE_HOME_DIRECTORY}")
971 set(srcdir "${CMAKE_HOME_DIRECTORY}/src")
972 set(bindir "${CMAKE_BINARY_DIR}")
973
974 ### Script used when simgrid is installed
975 set(exec_prefix ${CMAKE_INSTALL_PREFIX})
976 set(includeflag "-I${CMAKE_INSTALL_PREFIX}/include -I${CMAKE_INSTALL_PREFIX}/include/smpi")
977 set(includedir "${CMAKE_INSTALL_PREFIX}/include")
978 set(libdir ${exec_prefix}/lib)
979 set(CMAKE_SMPI_COMMAND "export LD_LIBRARY_PATH=\"${CMAKE_INSTALL_PREFIX}/lib")
980 if(NS3_LIBRARY_PATH)
981   set(CMAKE_SMPI_COMMAND "${CMAKE_SMPI_COMMAND}:${NS3_LIBRARY_PATH}")
982 endif()
983 set(CMAKE_SMPI_COMMAND "${CMAKE_SMPI_COMMAND}:\${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}\"")
984
985 file(READ ${CMAKE_HOME_DIRECTORY}/src/smpi/smpitools.sh SMPITOOLS_SH)
986 configure_file(${CMAKE_HOME_DIRECTORY}/include/smpi/mpif.h.in ${CMAKE_BINARY_DIR}/include/smpi/mpif.h @ONLY)
987 configure_file(${CMAKE_HOME_DIRECTORY}/src/smpi/smpicc.in ${CMAKE_BINARY_DIR}/bin/smpicc @ONLY)
988 configure_file(${CMAKE_HOME_DIRECTORY}/src/smpi/smpicxx.in ${CMAKE_BINARY_DIR}/bin/smpicxx @ONLY)
989 configure_file(${CMAKE_HOME_DIRECTORY}/src/smpi/smpiff.in ${CMAKE_BINARY_DIR}/bin/smpiff @ONLY)
990 configure_file(${CMAKE_HOME_DIRECTORY}/src/smpi/smpif90.in ${CMAKE_BINARY_DIR}/bin/smpif90 @ONLY)
991 configure_file(${CMAKE_HOME_DIRECTORY}/src/smpi/smpirun.in ${CMAKE_BINARY_DIR}/bin/smpirun @ONLY)
992
993 ### Script used when simgrid is compiling
994 set(includeflag "-I${CMAKE_HOME_DIRECTORY}/include -I${CMAKE_HOME_DIRECTORY}/include/smpi")
995 set(includeflag "${includeflag} -I${CMAKE_BINARY_DIR}/include -I${CMAKE_BINARY_DIR}/include/smpi")
996 set(includedir "${CMAKE_HOME_DIRECTORY}/include")
997 set(exec_prefix "${CMAKE_BINARY_DIR}/smpi_script/")
998 set(CMAKE_SMPI_COMMAND "export LD_LIBRARY_PATH=\"${CMAKE_BINARY_DIR}/lib")
999 if(NS3_LIBRARY_PATH)
1000   set(CMAKE_SMPI_COMMAND "${CMAKE_SMPI_COMMAND}:${NS3_LIBRARY_PATH}")
1001 endif()
1002 set(CMAKE_SMPI_COMMAND "${CMAKE_SMPI_COMMAND}:\${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}\"")
1003 set(libdir "${CMAKE_BINARY_DIR}/lib")
1004
1005 configure_file(${CMAKE_HOME_DIRECTORY}/src/smpi/smpicc.in ${CMAKE_BINARY_DIR}/smpi_script/bin/smpicc @ONLY)
1006 configure_file(${CMAKE_HOME_DIRECTORY}/src/smpi/smpicxx.in ${CMAKE_BINARY_DIR}/smpi_script/bin/smpicxx @ONLY)
1007 configure_file(${CMAKE_HOME_DIRECTORY}/src/smpi/smpiff.in ${CMAKE_BINARY_DIR}/smpi_script/bin/smpiff @ONLY)
1008 configure_file(${CMAKE_HOME_DIRECTORY}/src/smpi/smpif90.in ${CMAKE_BINARY_DIR}/smpi_script/bin/smpif90 @ONLY)
1009 configure_file(${CMAKE_HOME_DIRECTORY}/src/smpi/smpirun.in ${CMAKE_BINARY_DIR}/smpi_script/bin/smpirun @ONLY)
1010
1011 set(top_builddir ${CMAKE_HOME_DIRECTORY})
1012
1013 if(NOT WIN32)
1014   execute_process(COMMAND chmod a=rwx ${CMAKE_BINARY_DIR}/bin/smpicc)
1015   execute_process(COMMAND chmod a=rwx ${CMAKE_BINARY_DIR}/bin/smpicxx)
1016   execute_process(COMMAND chmod a=rwx ${CMAKE_BINARY_DIR}/bin/smpiff)
1017   execute_process(COMMAND chmod a=rwx ${CMAKE_BINARY_DIR}/bin/smpif90)
1018   execute_process(COMMAND chmod a=rwx ${CMAKE_BINARY_DIR}/bin/smpirun)
1019   execute_process(COMMAND chmod a=rwx ${CMAKE_BINARY_DIR}/smpi_script/bin/smpicc)
1020   execute_process(COMMAND chmod a=rwx ${CMAKE_BINARY_DIR}/smpi_script/bin/smpicxx)
1021   execute_process(COMMAND chmod a=rwx ${CMAKE_BINARY_DIR}/smpi_script/bin/smpiff)
1022   execute_process(COMMAND chmod a=rwx ${CMAKE_BINARY_DIR}/smpi_script/bin/smpif90)
1023   execute_process(COMMAND chmod a=rwx ${CMAKE_BINARY_DIR}/smpi_script/bin/smpirun)
1024 endif()
1025
1026 set(generated_headers_to_install
1027   ${CMAKE_CURRENT_BINARY_DIR}/include/smpi/mpif.h
1028   ${CMAKE_CURRENT_BINARY_DIR}/include/simgrid_config.h
1029   )
1030
1031 set(generated_headers
1032   ${CMAKE_CURRENT_BINARY_DIR}/src/context_sysv_config.h
1033   ${CMAKE_CURRENT_BINARY_DIR}/src/internal_config.h
1034   )
1035
1036 set(generated_files_to_clean
1037   ${generated_headers}
1038   ${generated_headers_to_install}
1039   ${CMAKE_BINARY_DIR}/bin/smpicc
1040   ${CMAKE_BINARY_DIR}/bin/smpicxx
1041   ${CMAKE_BINARY_DIR}/bin/smpiff
1042   ${CMAKE_BINARY_DIR}/bin/smpif90
1043   ${CMAKE_BINARY_DIR}/bin/smpirun
1044   ${CMAKE_BINARY_DIR}/bin/colorize
1045   ${CMAKE_BINARY_DIR}/bin/simgrid_update_xml
1046   ${CMAKE_BINARY_DIR}/examples/smpi/tracing/smpi_traced.trace
1047   )
1048
1049 if(NOT "${CMAKE_BINARY_DIR}" STREQUAL "${CMAKE_HOME_DIRECTORY}")
1050   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions0.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions0.txt COPYONLY)
1051   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions1.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions1.txt COPYONLY)
1052   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions_allReduce.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_allReduce.txt COPYONLY)
1053   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions_barrier.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_barrier.txt COPYONLY)
1054   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions_bcast.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_bcast.txt COPYONLY)
1055   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions_with_isend.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_with_isend.txt COPYONLY)
1056   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions_alltoall.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_alltoall.txt COPYONLY)
1057   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions_alltoallv.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_alltoallv.txt COPYONLY)
1058   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions_waitall.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_waitall.txt COPYONLY)
1059   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions_reducescatter.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_reducescatter.txt COPYONLY)
1060   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions_gather.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_gather.txt COPYONLY)
1061   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions_allgatherv.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_allgatherv.txt COPYONLY)
1062   configure_file(${CMAKE_HOME_DIRECTORY}/teshsuite/smpi/hostfile ${CMAKE_BINARY_DIR}/teshsuite/smpi/hostfile COPYONLY)
1063   
1064   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/description_file ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/description_file COPYONLY)
1065   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/README ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/README COPYONLY)
1066   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/smpi_replay.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/smpi_replay.txt COPYONLY)
1067   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace0.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace0.txt COPYONLY)
1068   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace1.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace1.txt COPYONLY)
1069   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace2.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace2.txt COPYONLY)
1070   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace3.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace3.txt COPYONLY)
1071   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace4.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace4.txt COPYONLY)
1072   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace5.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace5.txt COPYONLY)
1073   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace6.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace6.txt COPYONLY)
1074   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace7.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace7.txt COPYONLY)
1075   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace8.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace8.txt COPYONLY)
1076   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace9.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace9.txt COPYONLY)
1077   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace10.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace10.txt COPYONLY)
1078   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace11.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace11.txt COPYONLY)
1079   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace12.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace12.txt COPYONLY)
1080   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace13.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace13.txt COPYONLY)
1081   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace14.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace14.txt COPYONLY)
1082   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace15.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace15.txt COPYONLY)
1083   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace16.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace16.txt COPYONLY)
1084   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace17.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace17.txt COPYONLY)
1085   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace18.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace18.txt COPYONLY)
1086   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace19.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace19.txt COPYONLY)
1087   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace20.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace20.txt COPYONLY)
1088   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace21.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace21.txt COPYONLY)
1089   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace22.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace22.txt COPYONLY)
1090   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace23.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace23.txt COPYONLY)
1091   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace24.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace24.txt COPYONLY)
1092   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace25.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace25.txt COPYONLY)
1093   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace26.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace26.txt COPYONLY)
1094   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace27.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace27.txt COPYONLY)
1095   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace28.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace28.txt COPYONLY)
1096   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace29.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace29.txt COPYONLY)
1097   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace30.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace30.txt COPYONLY)
1098   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace31.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace31.txt COPYONLY)
1099
1100   set(generated_files_to_clean
1101     ${generated_files_to_clean}
1102     ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions0.txt
1103     ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions1.txt
1104     ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_allReduce.txt
1105     ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_barrier.txt
1106     ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_bcast.txt
1107     ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_with_isend.txt
1108     ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_alltoall.txt
1109     ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_alltoallv.txt
1110     ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_waitall.txt
1111     ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_gather.txt
1112     ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_allgatherv.txt
1113     ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_reducescatter.txt
1114     ${CMAKE_BINARY_DIR}/teshsuite/smpi/hostfile
1115     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/description_file
1116     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/README
1117     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/smpi_replay.txt
1118     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace0.txt
1119     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace1.txt
1120     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace2.txt
1121     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace3.txt
1122     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace4.txt
1123     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace5.txt
1124     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace6.txt
1125     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace7.txt
1126     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace8.txt
1127     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace9.txt
1128     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace10.txt
1129     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace11.txt
1130     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace12.txt
1131     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace13.txt
1132     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace14.txt
1133     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace15.txt
1134     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace16.txt
1135     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace17.txt
1136     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace18.txt
1137     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace19.txt
1138     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace20.txt
1139     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace21.txt
1140     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace22.txt
1141     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace23.txt
1142     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace24.txt
1143     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace25.txt
1144     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace26.txt
1145     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace27.txt
1146     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace28.txt
1147     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace29.txt
1148     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace30.txt
1149     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace31.txt
1150     )
1151 endif()
1152
1153 SET_DIRECTORY_PROPERTIES(PROPERTIES ADDITIONAL_MAKE_CLEAN_FILES
1154   "${generated_files_to_clean}")
1155
1156 configure_file("${CMAKE_HOME_DIRECTORY}/tools/cmake/src/simgrid.nsi.in" "${CMAKE_BINARY_DIR}/simgrid.nsi" @ONLY IMMEDIATE)
1157
1158 ### Define source packages for Libs
1159 include(${CMAKE_HOME_DIRECTORY}/tools/cmake/DefinePackages.cmake)
1160
1161 ### Build some Maintainer files
1162 include(${CMAKE_HOME_DIRECTORY}/tools/cmake/MaintainerMode.cmake)
1163 include(${CMAKE_HOME_DIRECTORY}/tools/cmake/UnitTesting.cmake)
1164
1165 ### Setup gcc & clang flags
1166 if (NOT MSVC)
1167   include(${CMAKE_HOME_DIRECTORY}/tools/cmake/GCCFlags.cmake)
1168 endif()
1169
1170 ### Make Libs
1171 if(NOT WIN32)
1172   include(${CMAKE_HOME_DIRECTORY}/tools/cmake/MakeLib.cmake)
1173 else()
1174   include(${CMAKE_HOME_DIRECTORY}/tools/cmake/MakeLibWin.cmake)
1175 endif()
1176
1177 if(enable_java)
1178   include(${CMAKE_HOME_DIRECTORY}/tools/cmake/Java.cmake)
1179 endif()
1180
1181 ### Make tests
1182 if(enable_memcheck_xml)
1183   set(enable_memcheck true)
1184 endif()
1185
1186 INCLUDE(CTest)
1187 ENABLE_TESTING()
1188 include(${CMAKE_HOME_DIRECTORY}/tools/cmake/Tests.cmake)
1189 include(${CMAKE_HOME_DIRECTORY}/tools/cmake/CTestConfig.cmake)
1190
1191 ### Define subdirectories
1192 include(${CMAKE_HOME_DIRECTORY}/tools/cmake/MakeExe.cmake)
1193
1194 ### Setup the distrib
1195 include(${CMAKE_HOME_DIRECTORY}/tools/cmake/Distrib.cmake)
1196
1197 ### Build the doc (Windows downloads the doc instead of regenerating)
1198 #
1199 if(NOT WIN32)
1200   include(${CMAKE_HOME_DIRECTORY}/tools/cmake/Documentation.cmake)
1201 else()
1202   find_program(WGET_PROGRAM  NAMES wget)
1203   message(STATUS "wget: ${WGET_PROGRAM}")
1204   if(WGET_PROGRAM)
1205     ADD_CUSTOM_TARGET(simgrid_documentation
1206       COMMENT "Downloading the SimGrid documentation..."
1207       COMMAND ${WGET_PROGRAM} -r -np -nH -nd http://simgrid.gforge.inria.fr/simgrid/${release_version}/doc/
1208       WORKING_DIRECTORY ${CMAKE_HOME_DIRECTORY}/doc/html
1209     )
1210   endif()
1211 endif()
1212
1213 ### Print ARGS
1214 include(${CMAKE_HOME_DIRECTORY}/tools/cmake/PrintArgs.cmake)
1215
1216 INCLUDE(Dart)