diff options
author | Saturneric <[email protected]> | 2021-12-07 09:13:44 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-12-08 00:13:02 +0000 |
commit | ed86a627323131eb8992f903c742cf776c2fd922 (patch) | |
tree | 14f14cd7249bd0f87108fd6d0c055ffcaecef71e /src | |
parent | Fix Bugs on KeyUploadDialog (diff) | |
download | GpgFrontend-ed86a627323131eb8992f903c742cf776c2fd922.tar.gz GpgFrontend-ed86a627323131eb8992f903c742cf776c2fd922.zip |
Modified Project Configure & Update CI & Stable UI.
Diffstat (limited to '')
-rw-r--r-- | src/CMakeLists.txt | 2 | ||||
-rw-r--r-- | src/main.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 9ec83bc8..79eae6ea 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -93,7 +93,7 @@ if (MULTI_LANG_SUPPORT) COMMAND msgfmt --check --verbose --output-file ${CMAKE_SOURCE_DIR}/resource/locale/out/${_langName}/LC_MESSAGES/GpgFrontend.mo ${_poFile} ) add_custom_command(TARGET translations - COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_SOURCE_DIR}/resource/locale/out/ ${RESOURCE_OUTPUT_DIRECTORY}/locales) + COMMAND cp -rf ${CMAKE_SOURCE_DIR}/resource/locale/out/ ${RESOURCE_OUTPUT_DIRECTORY}/locales) endforeach () endif () diff --git a/src/main.cpp b/src/main.cpp index f4739767..96d3c4d8 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -55,7 +55,7 @@ int main(int argc, char* argv[]) { // unicode in source QTextCodec::setCodecForLocale(QTextCodec::codecForName("utf-8")); -#ifdef WINDOWS +#if !defined(RELEASE) // css QFile file(RESOURCE_DIR(qApp->applicationDirPath()) + "/css/default.qss"); file.open(QFile::ReadOnly); |