summaryrefslogtreecommitdiffhomepage
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-12-28 21:50:29 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-12-28 21:50:29 +0100
commit3df7cc4d199c263d5d9a606ddc211f4935d23e4c (patch)
treee84cd2c06239280f4864149d1799ae745fad042a /CMakeLists.txt
parenta185f437f42bd0215f212d11a0e23575945ea448 (diff)
feat: API: argument fixes for `throw_*` family of free functions.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
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()