diff options
author | Dimitri Staessens <dimitri.staessens@intec.ugent.be> | 2016-02-11 19:36:19 +0100 |
---|---|---|
committer | Dimitri Staessens <dimitri.staessens@intec.ugent.be> | 2016-02-11 19:36:19 +0100 |
commit | d85f6700de4db56341c429c0f4b5a44b72c07bb5 (patch) | |
tree | cf977578c870a60f1a1fcff81d898df6488871cc /src/da | |
parent | cedcaee9c0074380b627b61f0591d36b54c452f4 (diff) | |
parent | f78310f4886bad7029cc039971159ab7a97e00af (diff) | |
download | ouroboros-d85f6700de4db56341c429c0f4b5a44b72c07bb5.tar.gz ouroboros-d85f6700de4db56341c429c0f4b5a44b72c07bb5.zip |
Merge branch 'be' of bitbucket.org:ouroboros-rina/ouroboros into be
Diffstat (limited to 'src/da')
-rw-r--r-- | src/da/CMakeLists.txt | 16 | ||||
-rw-r--r-- | src/da/main.c | 8 |
2 files changed, 24 insertions, 0 deletions
diff --git a/src/da/CMakeLists.txt b/src/da/CMakeLists.txt new file mode 100644 index 00000000..050b0f80 --- /dev/null +++ b/src/da/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 (da ${SOURCE_FILES}) + +target_link_libraries (da LINK_PUBLIC ouroboros) + +install(TARGETS da RUNTIME DESTINATION ${CMAKE_INSTALL_FULL_BINDIR}) diff --git a/src/da/main.c b/src/da/main.c new file mode 100644 index 00000000..2eeb7b36 --- /dev/null +++ b/src/da/main.c @@ -0,0 +1,8 @@ +#include <stdio.h> + +int main() +{ + printf("Test of the DA\n"); + + return 0; +} |