Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Massive mv to use cmake as the default compilation infrastructure.
[simgrid.git] / buildtools / Cmake / simgrid_CMakeList / examples / gras / rpc / CMakeLists.txt
diff --git a/buildtools/Cmake/simgrid_CMakeList/examples/gras/rpc/CMakeLists.txt b/buildtools/Cmake/simgrid_CMakeList/examples/gras/rpc/CMakeLists.txt
deleted file mode 100644 (file)
index c1f9cbf..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-cmake_minimum_required(VERSION 2.6)
-
-set_source_files_properties(_rpc_simulator.c _rpc_client.c _rpc_forwarder.c _rpc_server.c
-PROPERTIES GENERATED true)
-
-set(EXECUTABLE_OUTPUT_PATH "./")
-set(LIBRARY_OUTPUT_PATH "${PROJECT_DIRECTORY}/lib")
-
-add_executable(rpc_simulator _rpc_simulator.c rpc.c)
-add_executable(rpc_client _rpc_client.c rpc.c)
-add_executable(rpc_forwarder _rpc_forwarder.c rpc.c)
-add_executable(rpc_server _rpc_server.c rpc.c)
-
-### Add definitions for compile
-target_link_libraries(rpc_simulator simgrid pthread m -fprofile-arcs)
-target_link_libraries(rpc_client gras pthread m -fprofile-arcs)
-target_link_libraries(rpc_forwarder gras pthread m -fprofile-arcs)
-target_link_libraries(rpc_server gras pthread m -fprofile-arcs)