Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
was too fast on merging the commits, sorry
[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   mark_as_advanced(BinUtils_DIR)
451   SET(HAVE_SMPI 1)
452
453   if( NOT "${CMAKE_OBJDUMP}" MATCHES "CMAKE_OBJDUMP-NOTFOUND" AND HAVE_MMAP)
454     SET(HAVE_PRIVATIZATION 1)
455   else()
456     SET(HAVE_PRIVATIZATION 0)
457   endif()
458 endif()
459
460 #--------------------------------------------------------------------------------------------------
461 ### Check for GNU dynamic linker
462 CHECK_INCLUDE_FILE("dlfcn.h" HAVE_DLFCN_H)
463 if (HAVE_DLFCN_H)
464     if(HAVE_DLOPEN_IN_LIBDL)
465       set(DL_LIBRARY "-ldl")
466     endif(HAVE_DLOPEN_IN_LIBDL)
467     execute_process(COMMAND ${CMAKE_C_COMPILER} ${CMAKE_HOME_DIRECTORY}/tools/cmake/test_prog/prog_gnu_dynlinker.c ${DL_LIBRARY} -o test_gnu_ld
468       WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
469       OUTPUT_VARIABLE HAVE_GNU_LD_compil
470     )
471     if(HAVE_GNU_LD_compil)
472       set(HAVE_GNU_LD 0)
473       message(STATUS "Warning: test program toward GNU ld failed to compile:")
474       message(STATUS "${HAVE_GNU_LD_comp_output}")
475     else()
476
477       execute_process(COMMAND ./test_gnu_ld
478           WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
479           RESULT_VARIABLE HAVE_GNU_LD_run
480           OUTPUT_VARIABLE var_exec
481       )
482
483       if(NOT HAVE_GNU_LD_run)
484         set(HAVE_GNU_LD 1)
485         message(STATUS "We are using GNU dynamic linker")
486       else()
487         set(HAVE_GNU_LD 0)
488         message(STATUS "Warning: error while checking for GNU ld:")
489         message(STATUS "Test output: '${var_exec}'")
490         message(STATUS "Exit status: ${HAVE_GNU_LD_run}")
491       endif()
492       file(REMOVE test_gnu_ld)
493     endif()
494 endif()
495
496
497 #--------------------------------------------------------------------------------------------------
498 ### Initialize of CONTEXT THREADS
499
500 if(HAVE_PTHREAD)
501   ### Test that we have a way to create semaphores
502
503   if(HAVE_SEM_OPEN_LIB)
504     execute_process(COMMAND ${CMAKE_C_COMPILER} ${CMAKE_HOME_DIRECTORY}/tools/cmake/test_prog/prog_sem_open.c -lpthread -o sem_open
505     WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
506     OUTPUT_VARIABLE HAVE_SEM_OPEN_compil
507     )
508
509     # Test sem_open by compiling:
510     if(HAVE_SEM_OPEN_compil)
511       set(HAVE_SEM_OPEN 0)
512       message(STATUS "Warning: sem_open not compilable")
513       message(STATUS "HAVE_SEM_OPEN_comp_output: ${HAVE_SEM_OPEN_comp_output}")
514     else()
515       set(HAVE_SEM_OPEN 1)
516       message(STATUS "sem_open is compilable")
517     endif()
518
519     # If we're not crosscompiling, we check by executing the program:
520     if (HAVE_SEM_OPEN AND NOT CMAKE_CROSSCOMPILING)
521       execute_process(COMMAND ./sem_open
522       WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
523       RESULT_VARIABLE HAVE_SEM_OPEN_run
524       OUTPUT_VARIABLE var_compil
525       )
526       if (NOT HAVE_SEM_OPEN_run)
527         set(HAVE_SEM_OPEN 1)
528         message(STATUS "sem_open is executable")
529       else()
530         set(HAVE_SEM_OPEN 0)
531         if(EXISTS "${CMAKE_BINARY_DIR}/sem_open")
532           message(STATUS "Bin ${CMAKE_BINARY_DIR}/sem_open exists!")
533         else()
534           message(STATUS "Bin ${CMAKE_BINARY_DIR}/sem_open not exists!")
535         endif()
536         message(STATUS "Warning: sem_open not executable")
537         message(STATUS "Compilation output: '${var_compil}'")
538         message(STATUS "Exit result of sem_open: ${HAVE_SEM_OPEN_run}")
539       endif()
540     endif()
541     file(REMOVE sem_open)
542
543   else()
544     set(HAVE_SEM_OPEN 0)
545   endif()
546
547   if(HAVE_SEM_INIT_LIB)
548     execute_process(COMMAND ${CMAKE_C_COMPILER} ${CMAKE_HOME_DIRECTORY}/tools/cmake/test_prog/prog_sem_init.c -lpthread -o sem_init
549     WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
550     RESULT_VARIABLE HAVE_SEM_INIT_run OUTPUT_VARIABLE HAVE_SEM_INIT_compil)
551
552     # Test sem_init by compiling:
553     if(HAVE_SEM_INIT_compil)
554       set(HAVE_SEM_INIT 0)
555       message(STATUS "Warning: sem_init not compilable")
556       message(STATUS "HAVE_SEM_INIT_comp_output: ${HAVE_SEM_OPEN_comp_output}")
557     else()
558       set(HAVE_SEM_INIT 1)
559       message(STATUS "sem_init is compilable")
560     endif()
561
562     # If we're not crosscompiling, we check by executing the program:
563     if (HAVE_SEM_INIT AND NOT CMAKE_CROSSCOMPILING)
564       execute_process(COMMAND ./sem_init
565       WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
566       RESULT_VARIABLE HAVE_SEM_INIT_run
567       OUTPUT_VARIABLE var_compil
568       )
569       if (NOT HAVE_SEM_INIT_run)
570         set(HAVE_SEM_INIT 1)
571         message(STATUS "sem_init is executable")
572       else()
573         set(HAVE_SEM_INIT 0)
574         if(EXISTS "${CMAKE_BINARY_DIR}/sem_init")
575           message(STATUS "Bin ${CMAKE_BINARY_DIR}/sem_init exists!")
576         else()
577           message(STATUS "Bin ${CMAKE_BINARY_DIR}/sem_init not exists!")
578         endif()
579         message(STATUS "Warning: sem_init not executable")
580         message(STATUS "Compilation output: '${var_compil}'")
581         message(STATUS "Exit result of sem_init: ${HAVE_SEM_INIT_run}")
582       endif()
583     endif()
584     file(REMOVE sem_init)
585   endif()
586
587   if(NOT HAVE_SEM_OPEN AND NOT HAVE_SEM_INIT)
588     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).")
589   endif()
590
591   ### Test that we have a way to timewait for semaphores
592
593   if(HAVE_SEM_TIMEDWAIT_LIB)
594
595     execute_process(
596       COMMAND "${CMAKE_C_COMPILER} ${CMAKE_HOME_DIRECTORY}/tools/cmake/test_prog/prog_sem_timedwait.c -lpthread"
597       WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
598       OUTPUT_VARIABLE HAVE_SEM_TIMEDWAIT_run
599       )
600
601     if(HAVE_SEM_TIMEDWAIT_run)
602       set(HAVE_SEM_TIMEDWAIT 0)
603       message(STATUS "timedwait not compilable")
604     else()
605       set(HAVE_SEM_TIMEDWAIT 1)
606       message(STATUS "timedwait is compilable")
607     endif()
608   endif()
609
610   ### HAVE_MUTEX_TIMEDLOCK
611
612   if(HAVE_MUTEX_TIMEDLOCK_LIB)
613
614     execute_process(
615       COMMAND "${CMAKE_C_COMPILER} ${CMAKE_HOME_DIRECTORY}/tools/cmake/test_prog/prog_mutex_timedlock.c -lpthread"
616       WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
617       OUTPUT_VARIABLE HAVE_MUTEX_TIMEDLOCK_run
618       )
619
620     if(HAVE_MUTEX_TIMEDLOCK_run)
621       set(HAVE_MUTEX_TIMEDLOCK 0)
622       message(STATUS "timedlock not compilable")
623     else()
624       message(STATUS "timedlock is compilable")
625       set(HAVE_MUTEX_TIMEDLOCK 1)
626     endif()
627   endif()
628 endif()
629
630 # This is needed for ucontext on MacOS X:
631 if(CMAKE_SYSTEM_NAME MATCHES "Darwin")
632   add_definitions(-D_XOPEN_SOURCE=700 -D_DARWIN_C_SOURCE)
633 endif()
634
635 if(WIN32)
636   # We always provide our own implementation of ucontext on Windows.
637   try_compile(HAVE_UCONTEXT
638     ${CMAKE_BINARY_DIR}
639     ${CMAKE_HOME_DIRECTORY}/tools/cmake/test_prog/prog_AC_CHECK_MCSC.c
640     COMPILE_DEFINITIONS _XBT_WIN32
641     INCLUDE_DIRECTORIES
642       ${CMAKE_HOME_DIRECTORY}/src/include
643       ${CMAKE_HOME_DIRECTORY}/src/xbt
644   )
645 else()
646   # We always provide our own implementation of ucontext on Windows.
647   try_compile(HAVE_UCONTEXT
648     ${CMAKE_BINARY_DIR}
649     ${CMAKE_HOME_DIRECTORY}/tools/cmake/test_prog/prog_AC_CHECK_MCSC.c)
650 endif()
651
652 #If can have both context
653
654 if(HAVE_UCONTEXT)
655   set(CONTEXT_UCONTEXT 1)
656   message("-- Support for ucontext factory")
657 endif()
658
659 if(HAVE_PTHREAD)
660   set(CONTEXT_THREADS 1)
661   message("-- Support for thread context factory")
662 endif()
663
664 ###############
665 ## GIT version check
666 ##
667 if(EXISTS ${CMAKE_HOME_DIRECTORY}/.git/)
668   execute_process(COMMAND git remote
669   COMMAND head -n 1
670   WORKING_DIRECTORY ${CMAKE_HOME_DIRECTORY}/.git/
671   OUTPUT_VARIABLE remote
672   RESULT_VARIABLE ret
673   )
674   string(REPLACE "\n" "" remote "${remote}")
675   #message(STATUS "Git remote: ${remote}")
676   execute_process(COMMAND git config --get remote.${remote}.url
677   WORKING_DIRECTORY ${CMAKE_HOME_DIRECTORY}/.git/
678   OUTPUT_VARIABLE url
679   RESULT_VARIABLE ret
680   )
681   string(REPLACE "\n" "" url "${url}")
682   #message(STATUS "Git url: ${url}")
683   if(url)
684     execute_process(COMMAND git --git-dir=${CMAKE_HOME_DIRECTORY}/.git log --pretty=oneline --abbrev-commit -1
685     WORKING_DIRECTORY ${CMAKE_HOME_DIRECTORY}/.git/
686     OUTPUT_VARIABLE GIT_VERSION
687     RESULT_VARIABLE ret
688     )
689     string(REPLACE "\n" "" GIT_VERSION "${GIT_VERSION}")
690     message(STATUS "Git version: ${GIT_VERSION}")
691     execute_process(COMMAND git --git-dir=${CMAKE_HOME_DIRECTORY}/.git log -n 1 --pretty=format:%ai .
692     WORKING_DIRECTORY ${CMAKE_HOME_DIRECTORY}/.git/
693     OUTPUT_VARIABLE GIT_DATE
694     RESULT_VARIABLE ret
695     )
696     string(REPLACE "\n" "" GIT_DATE "${GIT_DATE}")
697     message(STATUS "Git date: ${GIT_DATE}")
698     string(REGEX REPLACE " .*" "" GIT_VERSION "${GIT_VERSION}")
699     
700     execute_process(COMMAND git --git-dir=${CMAKE_HOME_DIRECTORY}/.git log --pretty=format:%H -1
701                     WORKING_DIRECTORY ${CMAKE_HOME_DIRECTORY}/.git/
702                     OUTPUT_VARIABLE SIMGRID_GITHASH
703                     RESULT_VARIABLE ret
704                     )
705     string(REPLACE "\n" "" SIMGRID_GITHASH "${SIMGRID_GITHASH}")
706                     
707   endif()
708 elseif(EXISTS ${CMAKE_HOME_DIRECTORY}/.gitversion)
709   FILE(STRINGS ${CMAKE_HOME_DIRECTORY}/.gitversion GIT_VERSION)
710 endif()
711
712 if(GIT_VERSION)
713   set(SIMGRID_VERSION_BANNER "${SIMGRID_VERSION_BANNER} at commit ${GIT_VERSION}")
714 endif()
715 if(GIT_DATE)
716   set(SIMGRID_VERSION_BANNER "${SIMGRID_VERSION_BANNER} (${GIT_DATE})")
717 endif()
718 #--------------------------------------------------------------------------------------------------
719
720 set(makecontext_CPPFLAGS_2 "")
721 if(HAVE_MAKECONTEXT OR WIN32)
722   set(makecontext_CPPFLAGS "-DTEST_makecontext")
723   if(CMAKE_SYSTEM_NAME MATCHES "Darwin")
724     set(makecontext_CPPFLAGS_2 "-D_XOPEN_SOURCE=700")
725   endif()
726
727   if(WIN32)
728     if(ARCH_32_BITS)
729       set(makecontext_CPPFLAGS "-DTEST_makecontext -D_I_X86_")
730     else()
731       set(makecontext_CPPFLAGS "-DTEST_makecontext -D_AMD64_")
732     endif()
733     set(makecontext_CPPFLAGS_2 "-D_XBT_WIN32 -I${CMAKE_HOME_DIRECTORY}/src/include -I${CMAKE_HOME_DIRECTORY}/src/xbt")
734   endif()
735
736   file(REMOVE ${CMAKE_BINARY_DIR}/conftestval)
737
738   if(CMAKE_CROSSCOMPILING)
739     set(RUN_makecontext_VAR "cross")
740     set(COMPILE_makecontext_VAR "cross")
741   else()
742     try_run(RUN_makecontext_VAR COMPILE_makecontext_VAR
743       ${CMAKE_BINARY_DIR}
744       ${CMAKE_HOME_DIRECTORY}/tools/cmake/test_prog/prog_stacksetup.c
745       COMPILE_DEFINITIONS "${makecontext_CPPFLAGS} ${makecontext_CPPFLAGS_2}"
746       )
747   endif()
748
749   if(EXISTS ${CMAKE_BINARY_DIR}/conftestval)
750     file(READ ${CMAKE_BINARY_DIR}/conftestval MAKECONTEXT_ADDR_SIZE)
751     string(REPLACE "\n" "" MAKECONTEXT_ADDR_SIZE "${MAKECONTEXT_ADDR_SIZE}")
752     string(REGEX MATCH ;^.*,;MAKECONTEXT_ADDR "${MAKECONTEXT_ADDR_SIZE}")
753     string(REGEX MATCH ;,.*$; MAKECONTEXT_SIZE "${MAKECONTEXT_ADDR_SIZE}")
754     string(REPLACE "," "" makecontext_addr "${MAKECONTEXT_ADDR}")
755     string(REPLACE "," "" makecontext_size "${MAKECONTEXT_SIZE}")
756     set(pth_skaddr_makecontext "#define pth_skaddr_makecontext(skaddr,sksize) (${makecontext_addr})")
757     set(pth_sksize_makecontext "#define pth_sksize_makecontext(skaddr,sksize) (${makecontext_size})")
758   else()
759     # message(FATAL_ERROR "makecontext is not compilable")
760   endif()
761 endif()
762
763 #--------------------------------------------------------------------------------------------------
764
765 ### check for stackgrowth
766 if (NOT CMAKE_CROSSCOMPILING)
767   try_run(RUN_makecontext_VAR COMPILE_makecontext_VAR
768     ${CMAKE_BINARY_DIR}
769     ${CMAKE_HOME_DIRECTORY}/tools/cmake/test_prog/prog_stackgrowth.c
770     RUN_OUTPUT_VARIABLE stack
771     )
772 endif()
773 if("${stack}" STREQUAL "down")
774   set(PTH_STACKGROWTH "-1")
775 elseif("${stack}" STREQUAL "up")
776   set(PTH_STACKGROWTH "1")
777 else()
778   if("${CMAKE_SYSTEM_PROCESSOR}" STREQUAL "x86_64")
779     set(PTH_STACKGROWTH "-1")
780   elseif("${CMAKE_SYSTEM_PROCESSOR}" STREQUAL "i686")
781     set(PTH_STACKGROWTH "-1")
782   else()
783     message(ERROR "Could not figure the stack direction.")
784   endif()
785 endif()
786
787 ###############
788 ## System checks
789 ##
790
791 #SG_CONFIGURE_PART([System checks...])
792 #AC_PROG_CC(xlC gcc cc) -auto
793 #AM_SANITY_CHECK -auto
794
795 #AC_PROG_MAKE_SET
796
797 #AC_CHECK_VA_COPY
798
799 set(diff_va "va_copy((d),(s))"
800   "VA_COPY((d),(s))"
801   "__va_copy((d),(s))"
802   "__builtin_va_copy((d),(s))"
803   "do { (d) = (s)\; } while (0)"
804   "do { *(d) = *(s)\; } while (0)"
805   "memcpy((void *)&(d), (void *)&(s), sizeof(s))"
806   "memcpy((void *)(d), (void *)(s), sizeof(*(s)))"
807   )
808
809 foreach(fct ${diff_va})
810   write_file("${CMAKE_HOME_DIRECTORY}/tools/cmake/test_prog/prog_va_copy.c" "#include <stdlib.h>
811 #include <stdarg.h>
812 #include <string.h>
813 #define DO_VA_COPY(d,s) ${fct}
814 void test(char *str, ...)
815 {
816   va_list ap, ap2;
817   int i;
818   va_start(ap, str);
819   DO_VA_COPY(ap2, ap);
820   for (i = 1; i <= 9; i++) {
821     int k = (int)va_arg(ap, int);
822     if (k != i)
823       abort();
824   }
825   DO_VA_COPY(ap, ap2);
826   for (i = 1; i <= 9; i++) {
827     int k = (int)va_arg(ap, int);
828     if (k != i)
829       abort();
830   }
831   va_end(ap);
832 }
833 int main(void)
834 {
835   test(\"test\", 1, 2, 3, 4, 5, 6, 7, 8, 9);
836   exit(0);
837 }"
838     )
839
840   execute_process(
841   COMMAND ${CMAKE_C_COMPILER} "${CMAKE_HOME_DIRECTORY}/tools/cmake/test_prog/prog_va_copy.c"
842   WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
843   RESULT_VARIABLE COMPILE_VA_NULL_VAR
844   OUTPUT_QUIET
845   ERROR_QUIET
846   )
847
848   if(NOT COMPILE_VA_NULL_VAR)
849     string(REGEX REPLACE "\;" "" fctbis ${fct})
850     if(${fctbis} STREQUAL "va_copy((d),(s))")
851       set(HAVE_VA_COPY 1)
852       set(ac_cv_va_copy "C99")
853       set(__VA_COPY_USE_C99 "va_copy((d),(s))")
854     endif()
855
856     if(${fctbis} STREQUAL "VA_COPY((d),(s))")
857       set(ac_cv_va_copy "GCM")
858       set(__VA_COPY_USE_GCM "VA_COPY((d),(s))")
859     endif()
860
861     if(${fctbis} STREQUAL "__va_copy((d),(s))")
862       set(ac_cv_va_copy "GCH")
863       set(__VA_COPY_USE_GCH "__va_copy((d),(s))")
864     endif()
865
866     if(${fctbis} STREQUAL "__builtin_va_copy((d),(s))")
867       set(ac_cv_va_copy "GCB")
868       set(__VA_COPY_USE_GCB "__builtin_va_copy((d),(s))")
869     endif()
870
871     if(${fctbis} STREQUAL "do { (d) = (s) } while (0)")
872       set(ac_cv_va_copy "ASS")
873       set(__VA_COPY_USE_ASS "do { (d) = (s); } while (0)")
874     endif()
875
876     if(${fctbis} STREQUAL "do { *(d) = *(s) } while (0)")
877       set(ac_cv_va_copy "ASP")
878       set(__VA_COPY_USE_ASP "do { *(d) = *(s); } while (0)")
879     endif()
880
881     if(${fctbis} STREQUAL "memcpy((void *)&(d), (void *)&(s), sizeof(s))")
882       set(ac_cv_va_copy "CPS")
883       set(__VA_COPY_USE_CPS "memcpy((void *)&(d), (void *)&(s), sizeof(s))")
884     endif()
885
886     if(${fctbis} STREQUAL "memcpy((void *)(d), (void *)(s), sizeof(*(s)))")
887       set(ac_cv_va_copy "CPP")
888       set(__VA_COPY_USE_CPP "memcpy((void *)(d), (void *)(s), sizeof(*(s)))")
889     endif()
890
891     if(NOT STATUS_OK)
892       set(__VA_COPY_USE "__VA_COPY_USE_${ac_cv_va_copy}(d, s)")
893     endif()
894     set(STATUS_OK "1")
895
896   endif()
897
898 endforeach(fct ${diff_va})
899
900 #--------------------------------------------------------------------------------------------------
901 ### check for a working snprintf
902 if(HAVE_SNPRINTF AND HAVE_VSNPRINTF OR WIN32)
903   if(WIN32)
904     #set(HAVE_SNPRINTF 1)
905     #set(HAVE_VSNPRINTF 1)
906   endif()
907
908   if(CMAKE_CROSSCOMPILING)
909     set(RUN_SNPRINTF_FUNC "cross")
910     #set(PREFER_PORTABLE_SNPRINTF 1)
911   else()
912     try_run(RUN_SNPRINTF_FUNC_VAR COMPILE_SNPRINTF_FUNC_VAR
913       ${CMAKE_BINARY_DIR}
914       ${CMAKE_HOME_DIRECTORY}/tools/cmake/test_prog/prog_snprintf.c
915       )
916   endif()
917
918   if(CMAKE_CROSSCOMPILING)
919     set(RUN_VSNPRINTF_FUNC "cross")
920     set(PREFER_PORTABLE_VSNPRINTF 1)
921   else()
922     try_run(RUN_VSNPRINTF_FUNC_VAR COMPILE_VSNPRINTF_FUNC_VAR
923       ${CMAKE_BINARY_DIR}
924       ${CMAKE_HOME_DIRECTORY}/tools/cmake/test_prog/prog_vsnprintf.c
925       )
926   endif()
927
928   set(PREFER_PORTABLE_SNPRINTF 0)
929   if(RUN_VSNPRINTF_FUNC_VAR MATCHES "FAILED_TO_RUN")
930     set(PREFER_PORTABLE_SNPRINTF 1)
931   endif()
932   if(RUN_SNPRINTF_FUNC_VAR MATCHES "FAILED_TO_RUN")
933     set(PREFER_PORTABLE_SNPRINTF 1)
934   endif()
935 endif()
936
937 ### check for asprintf function familly
938 if(HAVE_ASPRINTF)
939   SET(simgrid_need_asprintf "")
940   SET(NEED_ASPRINTF 0)
941 else()
942   SET(simgrid_need_asprintf "#define SIMGRID_NEED_ASPRINTF 1")
943   SET(NEED_ASPRINTF 1)
944 endif()
945
946 if(HAVE_VASPRINTF)
947   SET(simgrid_need_vasprintf "")
948   SET(NEED_VASPRINTF 0)
949 else()
950   SET(simgrid_need_vasprintf "#define SIMGRID_NEED_VASPRINTF 1")
951   SET(NEED_VASPRINTF 1)
952 endif()
953
954 ### check for addr2line
955
956 find_path(ADDR2LINE NAMES addr2line     PATHS NO_DEFAULT_PATHS  )
957 if(ADDR2LINE)
958   set(ADDR2LINE "${ADDR2LINE}/addr2line")
959 endif()
960
961 ### File to create
962
963 configure_file("${CMAKE_HOME_DIRECTORY}/src/context_sysv_config.h.in"
964   "${CMAKE_BINARY_DIR}/src/context_sysv_config.h" @ONLY IMMEDIATE)
965
966 SET( CMAKEDEFINE "#cmakedefine" )
967 configure_file("${CMAKE_HOME_DIRECTORY}/tools/cmake/src/internal_config.h.in" "${CMAKE_BINARY_DIR}/src/internal_config.h" @ONLY IMMEDIATE)
968 configure_file("${CMAKE_BINARY_DIR}/src/internal_config.h" "${CMAKE_BINARY_DIR}/src/internal_config.h" @ONLY IMMEDIATE)
969 configure_file("${CMAKE_HOME_DIRECTORY}/include/simgrid_config.h.in" "${CMAKE_BINARY_DIR}/include/simgrid_config.h" @ONLY IMMEDIATE)
970
971 set(top_srcdir "${CMAKE_HOME_DIRECTORY}")
972 set(srcdir "${CMAKE_HOME_DIRECTORY}/src")
973 set(bindir "${CMAKE_BINARY_DIR}")
974
975 ### Script used when simgrid is installed
976 set(exec_prefix ${CMAKE_INSTALL_PREFIX})
977 set(includeflag "-I${CMAKE_INSTALL_PREFIX}/include -I${CMAKE_INSTALL_PREFIX}/include/smpi")
978 set(includedir "${CMAKE_INSTALL_PREFIX}/include")
979 set(libdir ${exec_prefix}/lib)
980 set(CMAKE_SMPI_COMMAND "export LD_LIBRARY_PATH=\"${CMAKE_INSTALL_PREFIX}/lib")
981 if(NS3_LIBRARY_PATH)
982   set(CMAKE_SMPI_COMMAND "${CMAKE_SMPI_COMMAND}:${NS3_LIBRARY_PATH}")
983 endif()
984 set(CMAKE_SMPI_COMMAND "${CMAKE_SMPI_COMMAND}:\${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}\"")
985
986 file(READ ${CMAKE_HOME_DIRECTORY}/src/smpi/smpitools.sh SMPITOOLS_SH)
987 configure_file(${CMAKE_HOME_DIRECTORY}/include/smpi/mpif.h.in ${CMAKE_BINARY_DIR}/include/smpi/mpif.h @ONLY)
988 configure_file(${CMAKE_HOME_DIRECTORY}/src/smpi/smpicc.in ${CMAKE_BINARY_DIR}/bin/smpicc @ONLY)
989 configure_file(${CMAKE_HOME_DIRECTORY}/src/smpi/smpicxx.in ${CMAKE_BINARY_DIR}/bin/smpicxx @ONLY)
990 configure_file(${CMAKE_HOME_DIRECTORY}/src/smpi/smpiff.in ${CMAKE_BINARY_DIR}/bin/smpiff @ONLY)
991 configure_file(${CMAKE_HOME_DIRECTORY}/src/smpi/smpif90.in ${CMAKE_BINARY_DIR}/bin/smpif90 @ONLY)
992 configure_file(${CMAKE_HOME_DIRECTORY}/src/smpi/smpirun.in ${CMAKE_BINARY_DIR}/bin/smpirun @ONLY)
993
994 ### Script used when simgrid is compiling
995 set(includeflag "-I${CMAKE_HOME_DIRECTORY}/include -I${CMAKE_HOME_DIRECTORY}/include/smpi")
996 set(includeflag "${includeflag} -I${CMAKE_BINARY_DIR}/include -I${CMAKE_BINARY_DIR}/include/smpi")
997 set(includedir "${CMAKE_HOME_DIRECTORY}/include")
998 set(exec_prefix "${CMAKE_BINARY_DIR}/smpi_script/")
999 set(CMAKE_SMPI_COMMAND "export LD_LIBRARY_PATH=\"${CMAKE_BINARY_DIR}/lib")
1000 if(NS3_LIBRARY_PATH)
1001   set(CMAKE_SMPI_COMMAND "${CMAKE_SMPI_COMMAND}:${NS3_LIBRARY_PATH}")
1002 endif()
1003 set(CMAKE_SMPI_COMMAND "${CMAKE_SMPI_COMMAND}:\${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}\"")
1004 set(libdir "${CMAKE_BINARY_DIR}/lib")
1005
1006 configure_file(${CMAKE_HOME_DIRECTORY}/src/smpi/smpicc.in ${CMAKE_BINARY_DIR}/smpi_script/bin/smpicc @ONLY)
1007 configure_file(${CMAKE_HOME_DIRECTORY}/src/smpi/smpicxx.in ${CMAKE_BINARY_DIR}/smpi_script/bin/smpicxx @ONLY)
1008 configure_file(${CMAKE_HOME_DIRECTORY}/src/smpi/smpiff.in ${CMAKE_BINARY_DIR}/smpi_script/bin/smpiff @ONLY)
1009 configure_file(${CMAKE_HOME_DIRECTORY}/src/smpi/smpif90.in ${CMAKE_BINARY_DIR}/smpi_script/bin/smpif90 @ONLY)
1010 configure_file(${CMAKE_HOME_DIRECTORY}/src/smpi/smpirun.in ${CMAKE_BINARY_DIR}/smpi_script/bin/smpirun @ONLY)
1011
1012 set(top_builddir ${CMAKE_HOME_DIRECTORY})
1013
1014 if(NOT WIN32)
1015   execute_process(COMMAND chmod a=rwx ${CMAKE_BINARY_DIR}/bin/smpicc)
1016   execute_process(COMMAND chmod a=rwx ${CMAKE_BINARY_DIR}/bin/smpicxx)
1017   execute_process(COMMAND chmod a=rwx ${CMAKE_BINARY_DIR}/bin/smpiff)
1018   execute_process(COMMAND chmod a=rwx ${CMAKE_BINARY_DIR}/bin/smpif90)
1019   execute_process(COMMAND chmod a=rwx ${CMAKE_BINARY_DIR}/bin/smpirun)
1020   execute_process(COMMAND chmod a=rwx ${CMAKE_BINARY_DIR}/smpi_script/bin/smpicc)
1021   execute_process(COMMAND chmod a=rwx ${CMAKE_BINARY_DIR}/smpi_script/bin/smpicxx)
1022   execute_process(COMMAND chmod a=rwx ${CMAKE_BINARY_DIR}/smpi_script/bin/smpiff)
1023   execute_process(COMMAND chmod a=rwx ${CMAKE_BINARY_DIR}/smpi_script/bin/smpif90)
1024   execute_process(COMMAND chmod a=rwx ${CMAKE_BINARY_DIR}/smpi_script/bin/smpirun)
1025 endif()
1026
1027 set(generated_headers_to_install
1028   ${CMAKE_CURRENT_BINARY_DIR}/include/smpi/mpif.h
1029   ${CMAKE_CURRENT_BINARY_DIR}/include/simgrid_config.h
1030   )
1031
1032 set(generated_headers
1033   ${CMAKE_CURRENT_BINARY_DIR}/src/context_sysv_config.h
1034   ${CMAKE_CURRENT_BINARY_DIR}/src/internal_config.h
1035   )
1036
1037 set(generated_files_to_clean
1038   ${generated_headers}
1039   ${generated_headers_to_install}
1040   ${CMAKE_BINARY_DIR}/bin/smpicc
1041   ${CMAKE_BINARY_DIR}/bin/smpicxx
1042   ${CMAKE_BINARY_DIR}/bin/smpiff
1043   ${CMAKE_BINARY_DIR}/bin/smpif90
1044   ${CMAKE_BINARY_DIR}/bin/smpirun
1045   ${CMAKE_BINARY_DIR}/bin/colorize
1046   ${CMAKE_BINARY_DIR}/bin/simgrid_update_xml
1047   ${CMAKE_BINARY_DIR}/examples/smpi/tracing/smpi_traced.trace
1048   )
1049
1050 if(NOT "${CMAKE_BINARY_DIR}" STREQUAL "${CMAKE_HOME_DIRECTORY}")
1051   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions0.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions0.txt COPYONLY)
1052   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions1.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions1.txt COPYONLY)
1053   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions_allReduce.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_allReduce.txt COPYONLY)
1054   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions_barrier.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_barrier.txt COPYONLY)
1055   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions_bcast.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_bcast.txt COPYONLY)
1056   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions_with_isend.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_with_isend.txt COPYONLY)
1057   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions_alltoall.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_alltoall.txt COPYONLY)
1058   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions_alltoallv.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_alltoallv.txt COPYONLY)
1059   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions_waitall.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_waitall.txt COPYONLY)
1060   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions_reducescatter.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_reducescatter.txt COPYONLY)
1061   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions_gather.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_gather.txt COPYONLY)
1062   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions_allgatherv.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_allgatherv.txt COPYONLY)
1063   configure_file(${CMAKE_HOME_DIRECTORY}/teshsuite/smpi/hostfile ${CMAKE_BINARY_DIR}/teshsuite/smpi/hostfile COPYONLY)
1064   
1065   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/description_file ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/description_file COPYONLY)
1066   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/README ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/README COPYONLY)
1067   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/smpi_replay.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/smpi_replay.txt COPYONLY)
1068   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)
1069   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)
1070   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)
1071   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)
1072   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)
1073   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)
1074   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)
1075   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)
1076   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)
1077   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)
1078   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)
1079   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)
1080   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)
1081   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)
1082   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)
1083   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)
1084   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)
1085   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)
1086   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)
1087   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)
1088   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)
1089   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)
1090   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)
1091   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)
1092   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)
1093   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)
1094   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)
1095   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)
1096   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)
1097   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)
1098   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)
1099   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)
1100
1101   set(generated_files_to_clean
1102     ${generated_files_to_clean}
1103     ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions0.txt
1104     ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions1.txt
1105     ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_allReduce.txt
1106     ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_barrier.txt
1107     ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_bcast.txt
1108     ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_with_isend.txt
1109     ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_alltoall.txt
1110     ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_alltoallv.txt
1111     ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_waitall.txt
1112     ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_gather.txt
1113     ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_allgatherv.txt
1114     ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_reducescatter.txt
1115     ${CMAKE_BINARY_DIR}/teshsuite/smpi/hostfile
1116     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/description_file
1117     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/README
1118     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/smpi_replay.txt
1119     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace0.txt
1120     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace1.txt
1121     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace2.txt
1122     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace3.txt
1123     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace4.txt
1124     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace5.txt
1125     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace6.txt
1126     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace7.txt
1127     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace8.txt
1128     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace9.txt
1129     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace10.txt
1130     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace11.txt
1131     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace12.txt
1132     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace13.txt
1133     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace14.txt
1134     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace15.txt
1135     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace16.txt
1136     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace17.txt
1137     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace18.txt
1138     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace19.txt
1139     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace20.txt
1140     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace21.txt
1141     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace22.txt
1142     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace23.txt
1143     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace24.txt
1144     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace25.txt
1145     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace26.txt
1146     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace27.txt
1147     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace28.txt
1148     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace29.txt
1149     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace30.txt
1150     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace31.txt
1151     )
1152 endif()
1153
1154 SET_DIRECTORY_PROPERTIES(PROPERTIES ADDITIONAL_MAKE_CLEAN_FILES
1155   "${generated_files_to_clean}")
1156
1157 configure_file("${CMAKE_HOME_DIRECTORY}/tools/cmake/src/simgrid.nsi.in" "${CMAKE_BINARY_DIR}/simgrid.nsi" @ONLY IMMEDIATE)
1158
1159 ### Define source packages for Libs
1160 include(${CMAKE_HOME_DIRECTORY}/tools/cmake/DefinePackages.cmake)
1161
1162 ### Build some Maintainer files
1163 include(${CMAKE_HOME_DIRECTORY}/tools/cmake/MaintainerMode.cmake)
1164 include(${CMAKE_HOME_DIRECTORY}/tools/cmake/UnitTesting.cmake)
1165
1166 ### Setup gcc & clang flags
1167 if (NOT MSVC)
1168   include(${CMAKE_HOME_DIRECTORY}/tools/cmake/GCCFlags.cmake)
1169 endif()
1170
1171 ### Make Libs
1172 if(NOT WIN32)
1173   include(${CMAKE_HOME_DIRECTORY}/tools/cmake/MakeLib.cmake)
1174 else()
1175   include(${CMAKE_HOME_DIRECTORY}/tools/cmake/MakeLibWin.cmake)
1176 endif()
1177
1178 if(enable_java)
1179   include(${CMAKE_HOME_DIRECTORY}/tools/cmake/Java.cmake)
1180 endif()
1181
1182 ### Make tests
1183 if(enable_memcheck_xml)
1184   set(enable_memcheck true)
1185 endif()
1186
1187 INCLUDE(CTest)
1188 ENABLE_TESTING()
1189 include(${CMAKE_HOME_DIRECTORY}/tools/cmake/Tests.cmake)
1190 include(${CMAKE_HOME_DIRECTORY}/tools/cmake/CTestConfig.cmake)
1191
1192 ### Define subdirectories
1193 include(${CMAKE_HOME_DIRECTORY}/tools/cmake/MakeExe.cmake)
1194
1195 ### Setup the distrib
1196 include(${CMAKE_HOME_DIRECTORY}/tools/cmake/Distrib.cmake)
1197
1198 ### Build the doc (Windows downloads the doc instead of regenerating)
1199 #
1200 if(NOT WIN32)
1201   include(${CMAKE_HOME_DIRECTORY}/tools/cmake/Documentation.cmake)
1202 else()
1203   find_program(WGET_PROGRAM  NAMES wget)
1204   message(STATUS "wget: ${WGET_PROGRAM}")
1205   if(WGET_PROGRAM)
1206     ADD_CUSTOM_TARGET(simgrid_documentation
1207       COMMENT "Downloading the SimGrid documentation..."
1208       COMMAND ${WGET_PROGRAM} -r -np -nH -nd http://simgrid.gforge.inria.fr/simgrid/${release_version}/doc/
1209       WORKING_DIRECTORY ${CMAKE_HOME_DIRECTORY}/doc/html
1210     )
1211   endif()
1212 endif()
1213
1214 ### Print ARGS
1215 include(${CMAKE_HOME_DIRECTORY}/tools/cmake/PrintArgs.cmake)
1216
1217 INCLUDE(Dart)