summaryrefslogtreecommitdiffhomepage
path: root/Parser
diff options
context:
space:
mode:
Diffstat (limited to 'Parser')
-rw-r--r--Parser/CMakeLists.txt17
1 files changed, 17 insertions, 0 deletions
diff --git a/Parser/CMakeLists.txt b/Parser/CMakeLists.txt
new file mode 100644
index 0000000..da2f2cd
--- /dev/null
+++ b/Parser/CMakeLists.txt
@@ -0,0 +1,17 @@
+project(Parser)
+add_library(
+ Parser
+ STATIC
+ Parser.cpp
+ Reader.cpp
+ Term.cpp
+ Token.cpp
+ )
+target_include_directories(
+ Parser
+ PUBLIC .
+ )
+target_link_libraries(
+ Parser
+ PRIVATE FoundationEx
+ )