We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2baa7e7 commit 0ea9959Copy full SHA for 0ea9959
.github/workflows/macos.yml
@@ -17,11 +17,21 @@ jobs:
17
with:
18
version: '6.7.0'
19
modules: 'qtmultimedia'
20
+ - name: Install Conan
21
+ id: conan
22
+ working-directory: ./
23
+ shell: bash
24
+ run: |
25
+ pip3 install wheel setuptools
26
+ pip3 install conan --upgrade
27
+ conan --version
28
+ conan profile detect
29
- name: Build
30
working-directory: ./
31
run: |
- cmake -B build .
- cmake --build build -j
32
+ conan install --requires=icu/74.2 --generator CMakeDeps --generator CMakeToolchain --build=missing
33
+ cmake . --preset conan-default
34
+ cmake --build --preset conan-release
35
- name: Package
36
id: package
37
0 commit comments