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