You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/cmake-multi-platform.yml
+7-4Lines changed: 7 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -33,16 +33,16 @@ jobs:
33
33
- os: ubuntu-latest
34
34
c_compiler: gcc
35
35
cpp_compiler: g++
36
-
- os: ubuntu-latest
37
-
c_compiler: clang
38
-
cpp_compiler: clang++
39
36
exclude:
40
37
- os: windows-latest
41
38
c_compiler: gcc
42
39
- os: windows-latest
43
40
c_compiler: clang
44
41
- os: ubuntu-latest
45
42
c_compiler: cl
43
+
- os: ubuntu-latest
44
+
c_compiler: clang
45
+
cpp_compiler: clang++
46
46
47
47
steps:
48
48
- uses: actions/checkout@v4
@@ -63,6 +63,8 @@ jobs:
63
63
-DCMAKE_C_COMPILER=${{ matrix.c_compiler }}
64
64
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
65
65
-S ${{ github.workspace }}
66
+
-DFREEIMAGE_WITH_LIBHEIF:BOOL=OFF
67
+
-FREEIMAGE_BUILD_TESTS:BOOL=ON
66
68
67
69
- name: Build
68
70
# Build your program with the given configuration. Note that --config is needed because the default Windows generator is a multi-config generator (Visual Studio generator).
# Execute tests defined by the CMake configuration. Note that --build-config is needed because the default Windows generator is a multi-config generator (Visual Studio generator).
74
76
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
0 commit comments