diff options
author | dimitri staessens <dimitri.staessens@intec.ugent.be> | 2016-03-23 22:42:41 +0100 |
---|---|---|
committer | dimitri staessens <dimitri.staessens@intec.ugent.be> | 2016-03-23 22:42:41 +0100 |
commit | dd30bcdb1d440d812b47c0b998c8f120b271ea9b (patch) | |
tree | 71f896dfab990c618f7bd4a47019009cf654a3c8 /src/tools/echo/CMakeLists.txt | |
parent | b3009103bd2b86b2ee0df2a71300bb976442c6a6 (diff) | |
parent | eb46e3ddc161c543ea268c54f0c6db40019d25c1 (diff) | |
download | ouroboros-dd30bcdb1d440d812b47c0b998c8f120b271ea9b.tar.gz ouroboros-dd30bcdb1d440d812b47c0b998c8f120b271ea9b.zip |
Merge branch 'be' of bitbucket.org:ouroboros-rina/ouroboros into be-shm
Diffstat (limited to 'src/tools/echo/CMakeLists.txt')
-rw-r--r-- | src/tools/echo/CMakeLists.txt | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/tools/echo/CMakeLists.txt b/src/tools/echo/CMakeLists.txt new file mode 100644 index 00000000..b3d88089 --- /dev/null +++ b/src/tools/echo/CMakeLists.txt @@ -0,0 +1,16 @@ +include_directories(${CMAKE_CURRENT_SOURCE_DIR}) +include_directories(${CMAKE_CURRENT_BINARY_DIR}) + +include_directories(${CMAKE_SOURCE_DIR}/include) +include_directories(${CMAKE_BINARY_DIR}/include) + +set(SOURCE_FILES + # Add source files here + echo.c +) + +add_executable(echo-app ${SOURCE_FILES}) + +target_link_libraries(echo-app LINK_PUBLIC ouroboros) + +install(TARGETS echo-app RUNTIME DESTINATION bin) |