I AM SO DONE WITH THIS

This commit is contained in:
Arisotura 2023-10-07 16:44:27 +02:00
parent 25db3bb808
commit 273c18ab8f
1 changed files with 10 additions and 0 deletions

View File

@ -29,6 +29,11 @@ jobs:
- name: Create build directory
run: mkdir -p ${{runner.workspace}}/build/arm64
- name: INSTALL ENET
run: |
arch -arm64 brew update
arch -arm64 brew install enet
- name: Configure
working-directory: ${{runner.workspace}}/build/arm64
run: arch -arm64 ${{env.homebrew_prefix}}/bin/cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCMAKE_PREFIX_PATH="${{env.homebrew_prefix}}/opt/qt@6;${{env.homebrew_prefix}}/opt/libarchive" -DPKG_CONFIG_EXECUTABLE=${{env.homebrew_prefix}}/bin/pkg-config -DMACOS_BUNDLE_LIBS=ON -DUSE_QT6=ON
@ -47,6 +52,11 @@ jobs:
- name: Create build directory
run: mkdir -p ${{runner.workspace}}/build/x86_64
- name: INSTALL ENET
run: |
arch -x86_64 brew update
arch -x86_64 brew install enet
- name: Configure
working-directory: ${{runner.workspace}}/build/x86_64
run: arch -x86_64 ${{env.homebrew_prefix}}/bin/cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCMAKE_PREFIX_PATH="${{env.homebrew_prefix}}/opt/qt@6;${{env.homebrew_prefix}}/opt/libarchive" -DPKG_CONFIG_EXECUTABLE=${{env.homebrew_prefix}}/bin/pkg-config -DMACOS_BUNDLE_LIBS=ON -DUSE_QT6=ON