summaryrefslogtreecommitdiffhomepage
path: root/examples/fix/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'examples/fix/CMakeLists.txt')
-rw-r--r--examples/fix/CMakeLists.txt15
1 files changed, 15 insertions, 0 deletions
diff --git a/examples/fix/CMakeLists.txt b/examples/fix/CMakeLists.txt
new file mode 100644
index 0000000..4c0a432
--- /dev/null
+++ b/examples/fix/CMakeLists.txt
@@ -0,0 +1,15 @@
+
+cmake_minimum_required(VERSION 3.15...3.31)
+
+project(
+ Fix
+ VERSION 1.0
+ LANGUAGES CXX)
+
+find_package(Boost REQUIRED COMPONENTS container)
+
+add_executable(Fix fix.cc)
+
+target_link_libraries(Fix PRIVATE Boost::container)
+set_property(TARGET Fix PROPERTY CXX_STANDARD 20)
+target_include_directories(Fix PUBLIC ../../include/ocl)