summaryrefslogtreecommitdiff
path: root/fusion-utils/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'fusion-utils/CMakeLists.txt')
-rw-r--r--fusion-utils/CMakeLists.txt13
1 files changed, 13 insertions, 0 deletions
diff --git a/fusion-utils/CMakeLists.txt b/fusion-utils/CMakeLists.txt
new file mode 100644
index 0000000..50e8565
--- /dev/null
+++ b/fusion-utils/CMakeLists.txt
@@ -0,0 +1,13 @@
+find_package(Boost REQUIRED)
+
+add_library(fusion-utils STATIC
+ index_list.hpp
+)
+
+target_include_directories(fusion-utils
+ PUBLIC ${Boost_INCLUDE_DIRS}
+ INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}
+)
+
+set_target_properties(fusion-utils PROPERTIES LINKER_LANGUAGE CXX)
+