Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
MC: complete workaround in the error msg seen on modern systems
[simgrid.git] / teshsuite / smpi / mpich3-test / f77 / topo / CMakeLists.txt
1 if(enable_smpi AND enable_smpi_MPICH3_testsuite AND SMPI_FORTRAN)
2   if(WIN32)
3     set(CMAKE_C_FLAGS "-include ${CMAKE_HOME_DIRECTORY}/include/smpi/smpi_main.h")
4   else()
5     set(CMAKE_C_COMPILER "${CMAKE_BINARY_DIR}/smpi_script/bin/smpicc")
6     set(CMAKE_Fortran_COMPILER "${CMAKE_BINARY_DIR}/smpi_script/bin/smpiff")
7   endif()
8
9   include_directories(BEFORE "${CMAKE_HOME_DIRECTORY}/include/smpi")
10
11   foreach(test cartcrf
12              # dgraph_unwgtf dgraph_wgtf
13                )
14     add_executable(${test} EXCLUDE_FROM_ALL ${test}.f)
15     add_dependencies(tests ${test})
16     target_link_libraries(${test} simgrid mtest_f77)
17   endforeach()
18 endif()
19
20 set(examples_src
21   ${examples_src}
22   ${CMAKE_CURRENT_SOURCE_DIR}/dgraph_wgtf.f
23   ${CMAKE_CURRENT_SOURCE_DIR}/dgraph_unwgtf.f
24   ${CMAKE_CURRENT_SOURCE_DIR}/cartcrf.f
25   PARENT_SCOPE)
26 set(txt_files
27   ${txt_files}
28   ${CMAKE_CURRENT_SOURCE_DIR}/testlist
29   PARENT_SCOPE)