1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

clients: move shmem example into clients directory

This commit is contained in:
Steffen Vogel 2018-10-21 10:46:27 +02:00
parent ba75a00e43
commit 2a0f745434
3 changed files with 11 additions and 2 deletions

View file

@ -22,3 +22,13 @@
add_subdirectory(python)
add_subdirectory(opal)
add_executable(villas-shmem shmem/villas-shmem.cpp)
target_link_libraries(villas-shmem PUBLIC villas)
install(
TARGETS villas-shmem
COMPONENT bin
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
)

View file

@ -25,10 +25,9 @@ link_libraries(villas)
add_executable(villas-node villas-node.cpp)
add_executable(villas-test-rtt villas-test-rtt.cpp)
add_executable(villas-test-shmem villas-test-shmem.cpp)
install(
TARGETS villas-node villas-test-rtt villas-test-shmem
TARGETS villas-node villas-test-rtt
COMPONENT bin
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
)