diff options
author | Saturneric <[email protected]> | 2022-01-06 10:54:06 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2022-01-06 10:54:06 +0000 |
commit | fd742b05bd7e7ab2e959a2ec44e10385668145dc (patch) | |
tree | 9bb65140205a7b0cda706133b80f49bbe073225a | |
parent | <refactor>(ci): update ci. (diff) | |
download | GpgFrontend-fd742b05bd7e7ab2e959a2ec44e10385668145dc.tar.gz GpgFrontend-fd742b05bd7e7ab2e959a2ec44e10385668145dc.zip |
<refactor>(project, ci): fixed ci and project configure file.
-rw-r--r-- | .github/workflows/release-linux-package.yml | 2 | ||||
-rw-r--r-- | src/gpg/CMakeLists.txt | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/release-linux-package.yml b/.github/workflows/release-linux-package.yml index bb811c69..adbae8e6 100644 --- a/.github/workflows/release-linux-package.yml +++ b/.github/workflows/release-linux-package.yml @@ -95,7 +95,7 @@ jobs: - name: Build & Package GpgFrontend (Linux DEB Package) # Build your program with the given configuration run: | - cmake -B ${{github.workspace}}/build-deb -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_BUILD_TYPE="Release" -DGENERATE_LINUX_INSTALL_SOFTWARE=ON .. + cmake -B ${{github.workspace}}/build-deb -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_BUILD_TYPE="Release" -DGENERATE_LINUX_INSTALL_SOFTWARE=ON cmake --build ${{github.workspace}}/build-deb --config {{$env.BUILD_TYPE}} -- -j 2 cd ${{github.workspace}}/build-deb make package diff --git a/src/gpg/CMakeLists.txt b/src/gpg/CMakeLists.txt index e651f541..87328504 100644 --- a/src/gpg/CMakeLists.txt +++ b/src/gpg/CMakeLists.txt @@ -10,9 +10,9 @@ set(UTILS_DIR ${CMAKE_SOURCE_DIR}/utils) set(GPGME_LIB_DIR ${UTILS_DIR}/gpgme/lib) if (EASY_LOGGING_PP) - set(THIRD_PARTY_LIBS easy_logging_pp) + set(THIRD_PARTY_LIBS ${THIRD_PARTY_LIBS} easy_logging_pp) endif () -set(THIRD_PARTY_LIBS "${THIRD_PARTY_LIBS} config++") +set(THIRD_PARTY_LIBS ${THIRD_PARTY_LIBS} config++) set(BOOST_LIBS Boost::date_time Boost::filesystem) |