aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/release-linux-package.yml2
-rw-r--r--src/gpg/CMakeLists.txt4
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)