File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -36,14 +36,15 @@ jobs:
36
36
shell : pwsh
37
37
working-directory : ./build
38
38
run : |
39
- conan install .. -s compiler="Visual Studio" -s compiler.version=16 -sbuild_type=Debug -g cmake_paths
39
+ conan profile detect
40
+ conan install .. -s compiler="msvc" -s compiler.version=193 -sbuild_type=Debug --build=missing
40
41
41
42
- name : Create Build Environment & Configure Cmake
42
43
shell : bash
43
44
working-directory : ./build
44
45
run : |
45
46
[[ ${{ matrix.link }} == "SHARED" ]] && shared="ON" || shared="OFF"
46
- cmake .. -DCMAKE_BUILD_TYPE=Debug -DBUILD_TESTING=on -DBUILD_SHARED_LIBS=$shared -DCMAKE_TOOLCHAIN_FILE="conan_paths .cmake" -DCMAKE_INSTALL_PREFIX=../install
47
+ cmake .. -DCMAKE_BUILD_TYPE=Debug -DBUILD_TESTING=on -DBUILD_SHARED_LIBS=$shared -DCMAKE_TOOLCHAIN_FILE="conan_toolchain .cmake" -DCMAKE_INSTALL_PREFIX=../install -DCMAKE_POLICY_DEFAULT_CMP0091=NEW
47
48
48
49
- name : Build
49
50
working-directory : ${{env.GITHUB_WORKSPACE}}
Original file line number Diff line number Diff line change 1
1
[requires]
2
2
gtest/1.10.0
3
- openssl/1.1.1j
3
+ openssl/1.1.1t
4
4
#c-ares/1.17.1
5
5
6
6
[generators]
7
- cmake_paths
7
+ CMakeToolchain
8
8
9
9
[options]
10
10
You can’t perform that action at this time.
0 commit comments