kraken-assessment/src/book/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

11 lines
146 B
CMake

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