summaryrefslogtreecommitdiff
path: root/le/CMakeLists.txt
diff options
context:
space:
mode:
authorDennis Brentjes <d.brentjes@gmail.com>2016-06-19 22:30:07 +0200
committerDennis Brentjes <d.brentjes@gmail.com>2016-06-19 22:30:07 +0200
commitdd8f1658c47db665481c725b9469408cf17e8c2e (patch)
tree185d0354c57f717068e348b322482dd4f826b77d /le/CMakeLists.txt
parentde95ca22ec87cc8b79ceb7beba475301461713a6 (diff)
downloadopenwar-dd8f1658c47db665481c725b9469408cf17e8c2e.tar.gz
openwar-dd8f1658c47db665481c725b9469408cf17e8c2e.tar.bz2
openwar-dd8f1658c47db665481c725b9469408cf17e8c2e.zip
implements a LE file parser and bare outputter.
Diffstat (limited to 'le/CMakeLists.txt')
-rw-r--r--le/CMakeLists.txt13
1 files changed, 13 insertions, 0 deletions
diff --git a/le/CMakeLists.txt b/le/CMakeLists.txt
index 646f68b..5d849b3 100644
--- a/le/CMakeLists.txt
+++ b/le/CMakeLists.txt
@@ -29,5 +29,18 @@ target_include_directories(le_header_parser
PRIVATE ${Boost_INCLUDE_DIRS}
)
+add_executable(le_file_parser
+ le_file_parser.cpp
+)
+
+target_link_libraries(le_file_parser
+ PRIVATE le
+ PRIVATE ${Boost_LIBRARIES}
+)
+
+target_include_directories(le_file_parser
+ PRIVATE ${Boost_INCLUDE_DIRS}
+)
+