From: suter Date: Wed, 26 Sep 2012 09:25:44 +0000 (+0200) Subject: What? give the same name to the directory and the executable file isn't X-Git-Tag: v3_8~146^2~18 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/b2b5ce8164c9ca7475b4c33c70f814d6d4dbf1f2 What? give the same name to the directory and the executable file isn't a good idea ? Come on ... --- diff --git a/examples/smpi/CMakeLists.txt b/examples/smpi/CMakeLists.txt index 840221c461..ac183b8eda 100644 --- a/examples/smpi/CMakeLists.txt +++ b/examples/smpi/CMakeLists.txt @@ -28,7 +28,7 @@ if(enable_smpi) add_executable(ttest01 ttest01.c) add_executable(mc_bugged1 mc_bugged1.c) add_executable(mc_bugged2 mc_bugged2.c) - add_executable(replay replay/replay.c) + add_executable(smpi_replay replay/replay.c) target_link_libraries(alltoall2 m simgrid smpi ) target_link_libraries(alltoall_basic m simgrid smpi ) @@ -51,7 +51,7 @@ if(enable_smpi) target_link_libraries(ttest01 m simgrid smpi ) target_link_libraries(mc_bugged1 m simgrid smpi ) target_link_libraries(mc_bugged2 m simgrid smpi ) - target_link_libraries(replay m simgrid smpi ) + target_link_libraries(smpi_replay m simgrid smpi ) set_target_properties(smpi_sendrecv PROPERTIES RENAME sendrecv) endif(enable_smpi)