diff options
author | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-02-22 17:34:21 +0100 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-02-22 17:34:21 +0100 |
commit | 59c9251f3584e8d016c41305ec272bfbf662405a (patch) | |
tree | fcac980032d9c414ae086756f3dd7b94d1a7cc55 /src/dad/CMakeLists.txt | |
parent | 815d2d611edec929b970868ac5ae9b3980165d0e (diff) | |
download | ouroboros-59c9251f3584e8d016c41305ec272bfbf662405a.tar.gz ouroboros-59c9251f3584e8d016c41305ec272bfbf662405a.zip |
src: Rename daemons and add tools folder
This renames the daemons to end with a 'd', as is common for UNIX
daemons. It also adds a tools folder, that will hold the tools of the
Ouroboros prototype. Examples are a simple echo application, an
application to instruct the IRM ...
Diffstat (limited to 'src/dad/CMakeLists.txt')
-rw-r--r-- | src/dad/CMakeLists.txt | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/dad/CMakeLists.txt b/src/dad/CMakeLists.txt new file mode 100644 index 00000000..3d4b8ea7 --- /dev/null +++ b/src/dad/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 + main.c +) + +add_executable (dad ${SOURCE_FILES}) + +target_link_libraries (dad LINK_PUBLIC ouroboros) + +install(TARGETS dad RUNTIME DESTINATION ${CMAKE_INSTALL_FULL_BINDIR}) |