summaryrefslogtreecommitdiff
path: root/binparse/CMakeLists.txt
diff options
context:
space:
mode:
authorDennis Brentjes <d.brentjes@gmail.com>2016-06-22 00:15:08 +0200
committerDennis Brentjes <d.brentjes@gmail.com>2016-06-22 00:16:28 +0200
commit22231518b9c2c0b7f73c72a6ca834df659c63c7f (patch)
tree12b1d20efd3303583649966ddfe135a81ae8109b /binparse/CMakeLists.txt
parent46145fe7d5b1d9f0921121a088a3d61f968cc473 (diff)
downloadopenwar-22231518b9c2c0b7f73c72a6ca834df659c63c7f.tar.gz
openwar-22231518b9c2c0b7f73c72a6ca834df659c63c7f.tar.bz2
openwar-22231518b9c2c0b7f73c72a6ca834df659c63c7f.zip
Reduces the amount of boilerplate neccesary to parse the binary format.
Diffstat (limited to 'binparse/CMakeLists.txt')
-rw-r--r--binparse/CMakeLists.txt7
1 files changed, 6 insertions, 1 deletions
diff --git a/binparse/CMakeLists.txt b/binparse/CMakeLists.txt
index 00fc246..cbc83b5 100644
--- a/binparse/CMakeLists.txt
+++ b/binparse/CMakeLists.txt
@@ -1,7 +1,8 @@
add_library(binparse STATIC
types.hpp
- binparse.hpp binparse.cpp
+ parse.hpp parse.cpp
+ output.hpp output.cpp
)
target_include_directories(binparse
@@ -10,4 +11,8 @@ target_include_directories(binparse
target_compile_options(binparse
PUBLIC "-std=c++14"
+)
+
+target_link_libraries(binparse
+ PRIVATE fusion-utils
) \ No newline at end of file