kraken-assessment/src/parse/CMakeLists.txt
Bruno BELANYI 21ff896730 kraken: move 'Order' definition to 'book'
I think it makes more sense to centralise these important types in the
`book` library.
2022-03-12 11:07:20 +01:00

13 lines
162 B
CMake

add_library(parse STATIC
parse.cc
parse.hh
)
target_link_libraries(parse PRIVATE
book
csv
utils
)
target_link_libraries(parse PRIVATE common_options)