diff options
author | Dimitri Staessens <dimitri.staessens@intec.ugent.be> | 2016-03-07 15:54:03 +0100 |
---|---|---|
committer | Dimitri Staessens <dimitri.staessens@intec.ugent.be> | 2016-03-07 15:54:03 +0100 |
commit | aa5997970f90e48532cfb749b2fe4a6b182de11f (patch) | |
tree | 76402de1d3b5c85d45ed2c42acaf96163c339277 /src/dad/CMakeLists.txt | |
parent | a430220c4c7eb32dbd5236df4d335f3c017dcb8a (diff) | |
parent | f9c16675dc625c124345bb440aa9604af61ddb8d (diff) | |
download | ouroboros-aa5997970f90e48532cfb749b2fe4a6b182de11f.tar.gz ouroboros-aa5997970f90e48532cfb749b2fe4a6b182de11f.zip |
Merged in sandervrijders/ouroboros/be-tests (pull request #23)
Testing framework
Diffstat (limited to 'src/dad/CMakeLists.txt')
-rw-r--r-- | src/dad/CMakeLists.txt | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/dad/CMakeLists.txt b/src/dad/CMakeLists.txt index 3d4b8ea7..1f9f4f42 100644 --- a/src/dad/CMakeLists.txt +++ b/src/dad/CMakeLists.txt @@ -13,4 +13,12 @@ add_executable (dad ${SOURCE_FILES}) target_link_libraries (dad LINK_PUBLIC ouroboros) -install(TARGETS dad RUNTIME DESTINATION ${CMAKE_INSTALL_FULL_BINDIR}) +include(MacroAddCompileFlags) +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 bin) + +# Enable once dad has tests +# add_subdirectory(tests) |