diff options
| author | Dennis Brentjes <d.brentjes@gmail.com> | 2016-06-22 00:15:08 +0200 |
|---|---|---|
| committer | Dennis Brentjes <d.brentjes@gmail.com> | 2016-06-22 00:16:28 +0200 |
| commit | 22231518b9c2c0b7f73c72a6ca834df659c63c7f (patch) | |
| tree | 12b1d20efd3303583649966ddfe135a81ae8109b /binparse/CMakeLists.txt | |
| parent | 46145fe7d5b1d9f0921121a088a3d61f968cc473 (diff) | |
| download | openwar-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.txt | 7 |
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 |
