diff options
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/codeql-analysis.yml | 3 | ||||
-rw-r--r-- | .github/workflows/release-qt5.yml | 1 | ||||
-rw-r--r-- | .github/workflows/release.yml | 2 | ||||
-rw-r--r-- | src/module/mods/gpg_info/CMakeLists.txt | 3 | ||||
-rw-r--r-- | src/module/mods/ver_check/CMakeLists.txt | 3 |
5 files changed, 5 insertions, 7 deletions
diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 01d540ec..f420374d 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -97,9 +97,8 @@ jobs: - name: Install Qt uses: jurplel/install-qt-action@v3 with: - version: '6.6.1' + version: '6.5.3' cache: 'true' - modules: 'qt5compat' - name: Configure CMake && Build GpgFrontend run: | diff --git a/.github/workflows/release-qt5.yml b/.github/workflows/release-qt5.yml index ffd77cc6..f65408e8 100644 --- a/.github/workflows/release-qt5.yml +++ b/.github/workflows/release-qt5.yml @@ -146,7 +146,6 @@ jobs: 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 -DGPGFRONTEND_QT5_BUILD=ON .. - # Build your program with the given configuration cmake --build . --config ${{env.BUILD_TYPE}} -- -j 4 if: matrix.os == 'windows-2019' diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 914fff52..611b0333 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -78,7 +78,6 @@ jobs: uses: jurplel/install-qt-action@v3 with: version: '6.5.3' - modules: 'qt5compat' cache: 'true' if: matrix.os == 'ubuntu-20.04' || matrix.os == 'macos-11' || matrix.os == 'macos-12' @@ -254,7 +253,6 @@ jobs: 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 .. - # Build your program with the given configuration cmake --build . --config ${{env.BUILD_TYPE}} -- -j 4 if: matrix.os == 'windows-2019' diff --git a/src/module/mods/gpg_info/CMakeLists.txt b/src/module/mods/gpg_info/CMakeLists.txt index 61c440a9..6660f5cb 100644 --- a/src/module/mods/gpg_info/CMakeLists.txt +++ b/src/module/mods/gpg_info/CMakeLists.txt @@ -39,7 +39,8 @@ target_include_directories(mod_gpg_info PRIVATE # set output directory set_target_properties(mod_gpg_info PROPERTIES - LIBRARY_OUTPUT_DIRECTORY ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/mods) + LIBRARY_OUTPUT_DIRECTORY ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/mods + RUNTIME_OUTPUT_DIRECTORY ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/mods) if (XCODE_BUILD) set_target_properties(mod_gpg_info diff --git a/src/module/mods/ver_check/CMakeLists.txt b/src/module/mods/ver_check/CMakeLists.txt index 1aaf94cf..b07a499a 100644 --- a/src/module/mods/ver_check/CMakeLists.txt +++ b/src/module/mods/ver_check/CMakeLists.txt @@ -39,7 +39,8 @@ target_include_directories(mod_ver_check PRIVATE # set output directory set_target_properties(mod_ver_check PROPERTIES - LIBRARY_OUTPUT_DIRECTORY ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/mods) + LIBRARY_OUTPUT_DIRECTORY ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/mods + RUNTIME_OUTPUT_DIRECTORY ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/mods) if (XCODE_BUILD) set_target_properties(mod_ver_check |