came back to the stable stade where i don't use llvm libraries and i produce assembly
[ozulis.git] / src / CMakeLists.txt
blobe137b26f5ea6ebe0d17e36691da331888f309153
1 INCLUDE_DIRECTORIES(.)
3 ADD_SUBDIRECTORY(ast)
4 ADD_SUBDIRECTORY(core)
5 ADD_SUBDIRECTORY(lang)
7 ADD_EXECUTABLE(ozulis
8   compiler.cc compiler.hh compiler.hxx
9   main.cc
10   parse-task.cc parse-task.hh
11   task.cc task.hh
12   )
14 TARGET_LINK_LIBRARIES(ozulis
15   gc
16   boost_program_options
17   boost_iostreams # can be changed to boost_iostreams-mt
18   core
19   lang
20   lang-mugiwara
21   lang-mugiwara-bison-parser
22   ast
23   )