diff options
author | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-03-07 15:13:34 +0100 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-03-07 15:13:34 +0100 |
commit | f9c16675dc625c124345bb440aa9604af61ddb8d (patch) | |
tree | ada38ded21f6e7e2a93f7047ee78bcc309da1011 /src/dad/CMakeLists.txt | |
parent | 486b601ecb6d79c90eadc4dda0981e25e6a7ba1d (diff) | |
download | ouroboros-f9c16675dc625c124345bb440aa9604af61ddb8d.tar.gz ouroboros-f9c16675dc625c124345bb440aa9604af61ddb8d.zip |
build: Add check target, fix packaging
This adds a build target 'check', which executes a test suite for
every daemon/library. Every test suite consists of a test driver that
executes a function in a file with the same name as the function. The
compile_debug script executes the 'check' target to validate there are
no regressions. Packaging is also fixed and the prototype can be
shipped as a tarball.
Diffstat (limited to 'src/dad/CMakeLists.txt')
-rw-r--r-- | src/dad/CMakeLists.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/dad/CMakeLists.txt b/src/dad/CMakeLists.txt index ef0a3a1e..1f9f4f42 100644 --- a/src/dad/CMakeLists.txt +++ b/src/dad/CMakeLists.txt @@ -18,4 +18,7 @@ if (CMAKE_BUILD_TYPE MATCHES Debug) MACRO_ADD_COMPILE_FLAGS(dad -DCONFIG_OUROBOROS_DEBUG) endif (CMAKE_BUILD_TYPE MATCHES Debug) -install(TARGETS dad RUNTIME DESTINATION ${CMAKE_INSTALL_FULL_BINDIR}) +install(TARGETS dad RUNTIME DESTINATION bin) + +# Enable once dad has tests +# add_subdirectory(tests) |