Use configure_file to set QTK_RESOURCES

This commit is contained in:
2022-08-14 18:17:05 -04:00
parent 44d9092306
commit 86b3f78368
6 changed files with 60 additions and 106 deletions

View File

@@ -13,61 +13,21 @@ jobs:
os: [ubuntu-latest, windows-latest, macos-latest]
include:
- os: ubuntu-latest
cmake: -DCMAKE_PREFIX_PATH="/home/runner/work/qtk/Qt/6.3.1/gcc_64/;../assimp"
cmake: -DCMAKE_PREFIX_PATH="/home/runner/work/qtk/Qt/6.3.1/gcc_64/"
- os: windows-latest
cmake: -DCMAKE_PREFIX_PATH="D:/a/qtk/qtk/Qt/6.3.1/mingw81_64/;../assimp" -DASSIMP_NEW_INTERFACE=on
cmake: -DCMAKE_PREFIX_PATH="D:/a/qtk/qtk/Qt/6.3.1/mingw81_64/"
- os: macos-latest
cmake: -DCMAKE_PREFIX_PATH="/home/runner/work/qtk/Qt/6.3.1/gcc_64/;../assimp" -DASSIMP_NEW_INTERFACE=on
cmake: -DCMAKE_PREFIX_PATH="/home/runner/work/qtk/Qt/6.3.1/gcc_64/"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Clone Assimp
uses: actions/checkout@v3
with:
repository: 'assimp/assimp'
path: 'assimp'
- name: Build Assimp
shell: bash
run: |
pwd
ls
cmake -S assimp/ -B assimp/build/ -DCMAKE_INSTALL_PREFIX=../assimp && cmake --build assimp/build
- name: Install Qt
uses: jurplel/install-qt-action@v2
with:
version: '6.3.1'
# - name: Install Assimp Linux
# if: matrix.os == 'ubuntu-latest'
# shell: bash
# run: |
# sudo apt install libassimp-dev -y
#
# - name: Install Assimp MacOS
# if: matrix.os == 'macos-latest'
# shell: bash
# run: |
# brew install assimp
#
# - name: Install Assimp Windows
# if: matrix.os == 'windows-latest'
# shell: bash
# run: |
# git clone https://github.com/Microsoft/vcpkg.git
# cd vcpkg
# ./bootstrap-vcpkg.sh
# ./vcpkg integrate install
# vcpkg install assimp
- name: Install Assimp MacOS
if: matrix.os == 'macos-latest'
shell: bash
run: |
brew install assimp
- name: Build Qtk
shell: bash
run: |