summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/cmake-platform-debug.yml3
-rw-r--r--.github/workflows/cmake-platform-release.yml5
-rw-r--r--CMakeLists.txt2
3 files changed, 3 insertions, 7 deletions
diff --git a/.github/workflows/cmake-platform-debug.yml b/.github/workflows/cmake-platform-debug.yml
index 61e2220..7706e3f 100644
--- a/.github/workflows/cmake-platform-debug.yml
+++ b/.github/workflows/cmake-platform-debug.yml
@@ -16,9 +16,6 @@ jobs:
steps:
- uses: actions/checkout@v4
- - name: Configure Submodule
- run: git submodule update --init
-
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
diff --git a/.github/workflows/cmake-platform-release.yml b/.github/workflows/cmake-platform-release.yml
index a864482..e640ed0 100644
--- a/.github/workflows/cmake-platform-release.yml
+++ b/.github/workflows/cmake-platform-release.yml
@@ -15,10 +15,7 @@ jobs:
steps:
- uses: actions/checkout@v4
-
- - name: Configure Submodules
- run: git submodule update --init
-
+
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 58414bf..8dc1dfc 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -11,4 +11,6 @@ set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)
+if (NOT DEFINED OCL_NO_INSTALL)
include(install_ocl.cmake)
+endif ()