mirror of
https://github.com/PancakeTAS/lsfg-vk.git
synced 2025-10-30 07:01:10 +00:00
remove clang requirement
This commit is contained in:
parent
5f033eca0d
commit
53b4438a2a
5 changed files with 4 additions and 7 deletions
2
.github/workflows/build-arch.yml
vendored
2
.github/workflows/build-arch.yml
vendored
|
|
@ -28,7 +28,7 @@ jobs:
|
|||
submodules: true
|
||||
- name: Configure with CMake and Ninja
|
||||
run: |
|
||||
cmake -B build -G Ninja \
|
||||
CC=clang CXX=clang++ cmake -B build -G Ninja \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-DCMAKE_INSTALL_PREFIX=./build-release
|
||||
- name: Build with Ninja
|
||||
|
|
|
|||
2
.github/workflows/build-debian.yml
vendored
2
.github/workflows/build-debian.yml
vendored
|
|
@ -31,7 +31,7 @@ jobs:
|
|||
submodules: true
|
||||
- name: Configure with CMake and Ninja
|
||||
run: |
|
||||
cmake -B build -G Ninja \
|
||||
CC=clang CXX=clang++ cmake -B build -G Ninja \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-DCMAKE_INSTALL_PREFIX=./build-release
|
||||
- name: Build with Ninja
|
||||
|
|
|
|||
2
.github/workflows/build-fedora.yml
vendored
2
.github/workflows/build-fedora.yml
vendored
|
|
@ -30,7 +30,7 @@ jobs:
|
|||
submodules: true
|
||||
- name: Configure with CMake and Ninja
|
||||
run: |
|
||||
cmake -B build -G Ninja \
|
||||
CC=clang CXX=clang++ cmake -B build -G Ninja \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-DCMAKE_INSTALL_PREFIX=./build-release
|
||||
- name: Build with Ninja
|
||||
|
|
|
|||
2
.github/workflows/build-ubuntu.yml
vendored
2
.github/workflows/build-ubuntu.yml
vendored
|
|
@ -42,7 +42,7 @@ jobs:
|
|||
submodules: true
|
||||
- name: Configure with CMake and Ninja
|
||||
run: |
|
||||
cmake -B build -G Ninja \
|
||||
CC=clang CXX=clang++ cmake -B build -G Ninja \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-DCMAKE_INSTALL_PREFIX=./build-release
|
||||
- name: Build with Ninja
|
||||
|
|
|
|||
|
|
@ -1,8 +1,5 @@
|
|||
cmake_minimum_required(VERSION 3.28)
|
||||
|
||||
set(CMAKE_C_COMPILER clang)
|
||||
set(CMAKE_CXX_COMPILER clang++)
|
||||
|
||||
set(CMAKE_SKIP_RPATH ON)
|
||||
|
||||
# subprojects
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue