Skip to content

Commit

Permalink
Fix for unreliable exists function
Browse files Browse the repository at this point in the history
  • Loading branch information
albar965 committed Jul 30, 2024
1 parent a749a10 commit 20bc685
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions littlenavmap.pro
Original file line number Diff line number Diff line change
Expand Up @@ -962,8 +962,10 @@ win32 {
deploy.commands += xcopy /F $$p($$MARBLE_LIB_PATH/../plugins/libNavigationFloatItem$${DLL_SUFFIX}.dll) $$p($$DEPLOY_BASE/$$WIN_TARGET_NAME/plugins) &&
deploy.commands += xcopy /F $$p($$MARBLE_LIB_PATH/../plugins/libOverviewMap$${DLL_SUFFIX}.dll) $$p($$DEPLOY_BASE/$$WIN_TARGET_NAME/plugins) &&
deploy.commands += xcopy /F $$p($$OUT_PWD/$${TARGET}.exe) $$p($$DEPLOY_BASE/$$WIN_TARGET_NAME) &&
exists($$OUT_PWD/$${TARGET}.debug) {
deploy.commands += xcopy /F $$p($$OUT_PWD/$${TARGET}.debug) $$p($$DEPLOY_BASE/$$WIN_TARGET_NAME) &&
!isEqual(ATOOLS_NO_CRASHHANDLER, "true") {
isEqual(CONF_TYPE, "release") {
deploy.commands += xcopy /F $$p($$OUT_PWD/$${TARGET}.debug) $$p($$DEPLOY_BASE/$$WIN_TARGET_NAME) &&
}
}
deploy.commands += xcopy /F $$p($$PWD/CHANGELOG.txt) $$p($$DEPLOY_BASE/$$WIN_TARGET_NAME) &&
deploy.commands += xcopy /F $$p($$PWD/README.txt) $$p($$DEPLOY_BASE/$$WIN_TARGET_NAME) &&
Expand Down

0 comments on commit 20bc685

Please sign in to comment.