diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2026-02-06 18:03:05 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2026-02-06 18:03:05 +0100 |
| commit | 5c3092e1436c7e7a1218559605bd73780435f8c8 (patch) | |
| tree | d35f309751129cb6f0a1c76cb4f83129905c1e45 /CMakeLists.txt | |
| parent | 54e0beb80ff75fea53a6d55532df1fce613c7b6a (diff) | |
chore: performance and build system improvements.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
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) |
