diff options
author | saturneric <[email protected]> | 2024-01-31 05:57:48 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-01-31 05:57:48 +0000 |
commit | 01dfc8df4f019e439e7b3e774ef3a02a2a908de2 (patch) | |
tree | 68fda3203652e01136e90e4944e190e8a5d41c51 /.github | |
parent | feat: try to add qt5 support (diff) | |
download | GpgFrontend-01dfc8df4f019e439e7b3e774ef3a02a2a908de2.tar.gz GpgFrontend-01dfc8df4f019e439e7b3e774ef3a02a2a908de2.zip |
feat: support qt5 build option
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/release-qt5.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/release-qt5.yml b/.github/workflows/release-qt5.yml index d19bc68b..00ec531e 100644 --- a/.github/workflows/release-qt5.yml +++ b/.github/workflows/release-qt5.yml @@ -63,7 +63,7 @@ jobs: run: | cd $(echo "/${{github.workspace}}" | sed 's/\\/\//g' | sed 's/://') mkdir build && cd build - cmake -G Ninja -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DGPGFRONTEND_BUILD_TYPE_STABLE=ON .. + cmake -G Ninja -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DGPGFRONTEND_BUILD_TYPE_STABLE=ON -DGPGFRONTEND_QT5_BUILD=ON .. # Build your program with the given configuration cmake --build . --config ${{env.BUILD_TYPE}} -- -j 2 if: matrix.os == 'windows-2019' |