From 91012d9af758a48c4c57fc940dfcc8a581fa46ac Mon Sep 17 00:00:00 2001 From: Dimitri Staessens Date: Wed, 14 Feb 2018 13:55:00 +0100 Subject: build: Allow out-of-tree build of tools This removes the dependencies for the tools on some ouroboros internal headers (endian.h and time_utils.h) so they can be built out-of-tree. The echo-app tool has been renamed oecho and the cbr tool has been renamed ocbr. Signed-off-by: Dimitri Staessens Signed-off-by: Sander Vrijders --- src/tools/oecho/CMakeLists.txt | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/tools/oecho/CMakeLists.txt (limited to 'src/tools/oecho/CMakeLists.txt') diff --git a/src/tools/oecho/CMakeLists.txt b/src/tools/oecho/CMakeLists.txt new file mode 100644 index 00000000..50a66138 --- /dev/null +++ b/src/tools/oecho/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 + oecho.c + ) + +add_executable(oecho ${SOURCE_FILES}) + +target_link_libraries(oecho LINK_PUBLIC ouroboros-dev) + +install(TARGETS oecho RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}) -- cgit v1.2.3