Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Also add the mpich3 binaries in the dependencies of make tests
[simgrid.git] / teshsuite / smpi / mpich3-test / f90 / info / 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/smpif90")
7   endif()
8
9   include_directories(BEFORE "${CMAKE_HOME_DIRECTORY}/include/smpi")
10
11   foreach(test infotest2f90 infotestf90)
12     add_executable(${test} EXCLUDE_FROM_ALL ${test}.f90)
13     add_dependencies(tests ${test})
14     target_link_libraries(${test} simgrid mtest_f90)
15   endforeach()
16 endif()
17
18 set(examples_src
19   ${examples_src}
20  ${CMAKE_CURRENT_SOURCE_DIR}/infotest2f90.f90 
21  ${CMAKE_CURRENT_SOURCE_DIR}/infotestf90.f90 
22   PARENT_SCOPE)
23 set(txt_files
24   ${txt_files}
25   ${CMAKE_CURRENT_SOURCE_DIR}/testlist
26   PARENT_SCOPE)