diff options
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | src/CMakeLists.txt | 12 | ||||
-rw-r--r-- | src/ui/KeyUploadDialog.cpp | 2 |
3 files changed, 8 insertions, 8 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 6b177a7f..652265a9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.5) -project(GpgFrontend VERSION 1.0.6 LANGUAGES CXX) +project(GpgFrontend VERSION 1.0.7 LANGUAGES CXX) message(STATUS "GPGFrontend Build Configuration Started CMAKE Version ${CMAKE_VERSION}") diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index e266838e..f3a266ac 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -101,9 +101,9 @@ if(${CMAKE_BUILD_TYPE} STREQUAL "Release") elseif(LINUX) add_executable(${AppName} ${BASE_SOURCE} ${RESOURCE_FILES} ${QT5_MOCS}) add_custom_command(TARGET ${AppName} POST_BUILD - COMMAND /bin/mv -f ./GpgFrontend ./gpgfrontend/usr/bin/ + COMMAND /bin/mkdir ./gpgfrontend/usr/bin && /bin/mv -f ./${AppName} ./gpgfrontend/usr/bin/ WORKING_DIRECTORY ${CMAKE_RUNTIME_OUTPUT_DIRECTORY} - COMMENT "Copying Resources INTO App Bundle Resource") + COMMENT "Copying Binary INTO App Image") else() add_executable(${AppName} ${BASE_SOURCE} ${RESOURCE_FILES} ${QT5_MOCS}) endif() @@ -115,13 +115,13 @@ IF (MINGW) message(STATUS "Link Application Static Library For MINGW") target_link_libraries(${AppName} gpgfrontend-ui gpg - Qt5::Network Qt5::PrintSupport Qt5::Widgets Qt5::Test Qt5::Core) - - + Qt5::Network Qt5::PrintSupport Qt5::Widgets Qt5::Test Qt5::Core + crypto ssl) else() message(STATUS "Link Application Static Library For UNIX") target_link_libraries(${AppName} gpgfrontend-ui gpg - Qt5::Network Qt5::PrintSupport Qt5::Widgets Qt5::Test Qt5::Core) + Qt5::Network Qt5::PrintSupport Qt5::Widgets Qt5::Test Qt5::Core + crypto ssl) endif() diff --git a/src/ui/KeyUploadDialog.cpp b/src/ui/KeyUploadDialog.cpp index 6ee6aa78..c9213e08 100644 --- a/src/ui/KeyUploadDialog.cpp +++ b/src/ui/KeyUploadDialog.cpp @@ -74,12 +74,12 @@ void KeyUploadDialog::uploadKeyToServer(QByteArray &keys) { auto *pb = new QProgressBar(); pb->setRange(0, 0); - pb->setFixedSize(200, 24); auto *layout = new QVBoxLayout(dialog); layout->addWidget(pb); dialog->setLayout(layout); + dialog->show(); // Keep Waiting |