summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-11-25 10:43:46 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-11-25 10:43:46 +0100
commit7d467583280e3cd2d0b25f6e7025502f7ebd3402 (patch)
treefa68a5ba99571384d37778d6d3a3af31627d4750
parente20285288afb45c66144b45b1cf6ea6bc4642484 (diff)
feat: fix: fix CMakeLists.txt for example.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
-rw-r--r--examples/fix/CMakeLists.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/examples/fix/CMakeLists.txt b/examples/fix/CMakeLists.txt
index 1001563..143b1c4 100644
--- a/examples/fix/CMakeLists.txt
+++ b/examples/fix/CMakeLists.txt
@@ -6,7 +6,10 @@ project(
VERSION 1.0
LANGUAGES CXX)
+find_package(Boost REQUIRED COMPONENTS container)
+
add_executable(Fix fix.cc)
set_property(TARGET Fix PROPERTY CXX_STANDARD 20)
target_include_directories(Fix PUBLIC ../../include/ocl)
+target_link_libraries(Fix PRIVATE Boost::container)