File tree 3 files changed +7
-5
lines changed
3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 9
9
fail-fast : false
10
10
matrix :
11
11
config :
12
- - { os: macos-10.15 } # https://github.com/actions/virtual-environments/blob/main/images/macos/macos-10.15-Readme.md#xcode
13
- - { os: macos-11.0 } # https://github.com/actions/virtual-environments/blob/main/images/macos/macos-11.0-Readme.md#xcode
12
+ - { os: macos-10.15 }
13
+ - { os: macos-11.0 }
14
14
build : [Debug, Release]
15
15
16
16
name : " ${{matrix.config.os}}:${{matrix.build}}"
Original file line number Diff line number Diff line change 12
12
compiler :
13
13
- { cc: "gcc-9", cxx: "g++-9" }
14
14
- { cc: "gcc-10", cxx: "g++-10" }
15
- - { cc: "clang-9", cxx: "clang++-9" }
16
15
- { cc: "clang-10", cxx: "clang++-10" }
16
+ - { cc: "clang-11", cxx: "clang++-11" }
17
+ - { cc: "clang-12", cxx: "clang++-12" }
17
18
18
19
name : " ${{matrix.compiler.cxx}}:${{matrix.build}}"
19
20
steps :
Original file line number Diff line number Diff line change 1
- cmake_minimum_required (VERSION 3.8 )
1
+ cmake_minimum_required (VERSION 3.14 )
2
2
3
3
project (nameof VERSION "0.10.0" LANGUAGES CXX)
4
4
@@ -32,7 +32,8 @@ target_include_directories(${PROJECT_NAME}
32
32
33
33
write_basic_package_version_file(${PROJECT_NAME} ConfigVersion.cmake
34
34
VERSION ${PROJECT_VERSION}
35
- COMPATIBILITY AnyNewerVersion)
35
+ COMPATIBILITY AnyNewerVersion
36
+ ARCH_INDEPENDENT)
36
37
37
38
if (NAMEOF_OPT_INSTALL)
38
39
install (TARGETS ${PROJECT_NAME}
You can’t perform that action at this time.
0 commit comments