From 5c3092e1436c7e7a1218559605bd73780435f8c8 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Fri, 6 Feb 2026 18:03:05 +0100 Subject: chore: performance and build system improvements. Signed-off-by: Amlal El Mahrouss --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 19ca3fa..66d9997 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,10 +3,10 @@ cmake_minimum_required(VERSION 3.10) project(ocl_fix) -find_package(Boost REQUIRED) +find_package(Boost REQUIRED core) add_library(ocl_fix src/fix/parser_impl.cpp) -target_link_libraries(ocl_fix boost_core) +target_link_libraries(ocl_fix Boost::core) target_include_directories(ocl_fix PUBLIC ${BOOST_INCLUDE_DIRS}) install(DIRECTORY include/ DESTINATION include) -- cgit v1.2.3