diff options
| author | Dennis Brentjes <d.brentjes@gmail.com> | 2016-06-19 11:58:16 +0200 |
|---|---|---|
| committer | Dennis Brentjes <d.brentjes@gmail.com> | 2016-06-19 11:58:16 +0200 |
| commit | c66d1f5c0af70161f4ad4c4175f4280e95b55dfd (patch) | |
| tree | f8e5e5d6dc921054182e478be742ac30258c56c6 /fusion-utils/CMakeLists.txt | |
| download | openwar-c66d1f5c0af70161f4ad4c4175f4280e95b55dfd.tar.gz openwar-c66d1f5c0af70161f4ad4c4175f4280e95b55dfd.tar.bz2 openwar-c66d1f5c0af70161f4ad4c4175f4280e95b55dfd.zip | |
Initial commit of a mz-header parser.
Diffstat (limited to 'fusion-utils/CMakeLists.txt')
| -rw-r--r-- | fusion-utils/CMakeLists.txt | 13 |
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) + |
