summaryrefslogtreecommitdiffhomepage
path: root/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt17
1 files changed, 17 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
new file mode 100644
index 0000000..9bde8c2
--- /dev/null
+++ b/CMakeLists.txt
@@ -0,0 +1,17 @@
+# // ============================================================= //
+# // Open C++ Libraries.
+# // Copyright (C) 2025, Amlal El Mahrouss and OCL Authors, licensed under BSD-3 license.
+# // ============================================================= //
+
+cmake_minimum_required(VERSION 3.30)
+
+project(OCL)
+
+set(CMAKE_CXX_STANDARD 20)
+set(CMAKE_CXX_STANDARD_REQUIRED ON)
+set(CMAKE_CXX_EXTENSIONS OFF)
+
+
+if (INSTALL_OCL)
+ include(install_core.cmake)
+endif()