Logo AND Algorithmique Numérique Distribuée

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