Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
various cleanups in the CMakeLists.txt files
[simgrid.git] / teshsuite / smpi / allreduce / CMakeLists.txt
index da60278..3db2745 100644 (file)
@@ -4,13 +4,11 @@ if(enable_smpi)
   else()
     set(CMAKE_C_COMPILER "${CMAKE_BINARY_DIR}/smpi_script/bin/smpicc")
   endif()
-
-  set(EXECUTABLE_OUTPUT_PATH "${CMAKE_CURRENT_BINARY_DIR}")
-
   include_directories(BEFORE "${CMAKE_HOME_DIRECTORY}/include/smpi")
-  add_executable(allreduce allreduce.c)
-  add_executable(allreduce_coll allreduce_coll.c)
-  target_link_libraries(allreduce simgrid)
+
+  add_executable       (allreduce      allreduce.c)
+  target_link_libraries(allreduce      simgrid)
+  add_executable       (allreduce_coll allreduce_coll.c)
   target_link_libraries(allreduce_coll simgrid)
 endif()