Skip to content

Commit 89860fa

Browse files
Michel Schmidg3force
Michel Schmid
authored andcommitted
a few steps towards a working windows pipeline
Windows pipeline is now doing what the samples from run-vcpkg and run-cmake suggest it should do and vcpkg claims that it should handle cmake find_package calls correctly if you use their vcpkg.cmake as the toolchain. It's not working, because for some reason the find_package call for Qt still fails with cmake claiming it can't find a Qt5config.cmake file.
1 parent e918cd3 commit 89860fa

File tree

2 files changed

+36
-4
lines changed

2 files changed

+36
-4
lines changed

.github/workflows/build.yaml

+9-3
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,17 @@ jobs:
4747
with:
4848
vcpkgGitCommitId: 8eb57355a4ffb410a2e94c07b4dca2dffbee8e50
4949
vcpkgDirectory: c:/vcpkg # folder must reside in c:\ otherwise qt wont install due to long path errors
50-
# needed to actually install the vcpkg dependencies
51-
runVcpkgInstall: true
5250

5351
- name: Run CMake and run vcpkg to build packages
5452
uses: lukka/run-cmake@v10
5553
with:
56-
configurePreset: "windows-default"
54+
# this preset is needed to actually install the vcpkg dependencies
55+
configurePreset: "ninja-multi-vcpkg"
56+
configPresetAdditionalArgs: "[-DVCPKG_TARGET_TRIPLET=x64-windows]"
57+
buildPreset: "ninja-multi-vcpkg"
5758
buildPresetAdditionalArgs: "['--config Release']"
59+
env:
60+
# [OPTIONAL] Define the vcpkg's triplet you want to enforce, otherwise the default one
61+
# for the hosting system will be automatically choosen (x64 is the default on all
62+
# platforms, e.g. `x64-osx`).
63+
VCPKG_DEFAULT_TRIPLET: "x64-windows"

CMakePresets.json

+27-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,32 @@
1414
"CMAKE_BUILD_TYPE": "Release",
1515
"CMAKE_INSTALL_PREFIX": "${sourceDir}/out/install/${presetName}"
1616
}
17+
},
18+
{
19+
"name": "ninja-multi-vcpkg",
20+
"displayName": "Windows x64 Release vcpkg",
21+
"generator": "Ninja Multi-Config",
22+
"binaryDir": "${sourceDir}/out/build/${presetName}",
23+
"architecture": {
24+
"value": "x64",
25+
"strategy": "external"
26+
},
27+
"cacheVariables": {
28+
"CMAKE_TOOLCHAIN_FILE": {
29+
"type": "FILEPATH",
30+
"value": "$env{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake"
31+
},
32+
"CMAKE_BUILD_TYPE": "Release",
33+
"CMAKE_INSTALL_PREFIX": "${sourceDir}/out/install/${presetName}"
34+
}
35+
}
36+
],
37+
"buildPresets": [
38+
{
39+
"name": "ninja-multi-vcpkg",
40+
"configurePreset": "ninja-multi-vcpkg",
41+
"displayName": "Build ninja-multi-vcpkg",
42+
"description": "Build ninja-multi-vcpkg Configurations"
1743
}
1844
]
19-
}
45+
}

0 commit comments

Comments
 (0)