From f9c16675dc625c124345bb440aa9604af61ddb8d Mon Sep 17 00:00:00 2001 From: Sander Vrijders Date: Mon, 7 Mar 2016 15:13:34 +0100 Subject: 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. --- include/ouroboros/CMakeLists.txt | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) (limited to 'include') diff --git a/include/ouroboros/CMakeLists.txt b/include/ouroboros/CMakeLists.txt index b4f04cf2..dc827fbe 100644 --- a/include/ouroboros/CMakeLists.txt +++ b/include/ouroboros/CMakeLists.txt @@ -1,6 +1,16 @@ -file(GLOB_RECURSE HEADER_FILES *.h) +set(HEADER_FILES + bitmap.h + cdap.h + common.h + da.h + dev.h + du_buff.h + ipcp.h + irm.h + list.h + logs.h + sockets.h +) install(FILES ${HEADER_FILES} - DESTINATION ${CMAKE_INSTALL_FULL_INCLUDEDIR}/ouroboros) - -add_custom_target(qtcreator-workaround SOURCES ${HEADER_FILES}) + DESTINATION include/ouroboros) -- cgit v1.2.3