diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 6f24f01..f9f172a 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -17,11 +17,21 @@ jobs: with: version: '6.7.0' modules: 'qtmultimedia' + - name: Install Conan + id: conan + working-directory: ./ + shell: bash + run: | + pip3 install wheel setuptools + pip3 install conan --upgrade + conan --version + conan profile detect - name: Build working-directory: ./ run: | - cmake -B build . - cmake --build build -j + conan install --requires=icu/74.2 --generator CMakeDeps --generator CMakeToolchain --build=missing + cmake . --preset conan-default + cmake --build --preset conan-release - name: Package id: package working-directory: ./