diff options
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..343aee1 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,13 @@ +# PURPOSE: FIX module CMakeLists. + +cmake_minimum_required(VERSION 3.10) +project(ocl_fix) + +find_package(Boost REQUIRED) + +add_library(ocl_fix src/fix/parser_impl.cpp) +target_link_libraries(ocl_fix boost_core) +install(TARGETS ocl_fix DESTINATION lib) + +set_property(TARGET ocl_fix PROPERTY CXX_STANDARD 20) + |
