kraken: parse: define 'Order' type

Use strong typing for the various components of the order.
This commit is contained in:
Bruno BELANYI 2022-03-12 01:54:16 +01:00
parent b7182826ab
commit 9550598a87
4 changed files with 78 additions and 0 deletions

View file

@ -2,10 +2,12 @@ add_executable(kraken kraken.cc)
target_link_libraries(kraken PRIVATE common_options)
add_subdirectory(csv)
add_subdirectory(parse)
add_subdirectory(utils)
target_link_libraries(kraken PRIVATE
csv
parse
)
install(TARGETS kraken)