From f78310f4886bad7029cc039971159ab7a97e00af Mon Sep 17 00:00:00 2001 From: Sander Vrijders Date: Thu, 11 Feb 2016 15:50:16 +0100 Subject: Initial build infrastructure Contains the initial build infrastructure. Cmake was chosen for portability reasons. --- include/CMakeLists.txt | 1 + include/ouroboros/CMakeLists.txt | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 include/CMakeLists.txt create mode 100644 include/ouroboros/CMakeLists.txt (limited to 'include') diff --git a/include/CMakeLists.txt b/include/CMakeLists.txt new file mode 100644 index 00000000..8895c582 --- /dev/null +++ b/include/CMakeLists.txt @@ -0,0 +1 @@ +add_subdirectory(ouroboros) diff --git a/include/ouroboros/CMakeLists.txt b/include/ouroboros/CMakeLists.txt new file mode 100644 index 00000000..b4f04cf2 --- /dev/null +++ b/include/ouroboros/CMakeLists.txt @@ -0,0 +1,6 @@ +file(GLOB_RECURSE HEADER_FILES *.h) + +install(FILES ${HEADER_FILES} + DESTINATION ${CMAKE_INSTALL_FULL_INCLUDEDIR}/ouroboros) + +add_custom_target(qtcreator-workaround SOURCES ${HEADER_FILES}) -- cgit v1.2.3