Skip to content

Commit

Permalink
fix: missing platform in path
Browse files Browse the repository at this point in the history
  • Loading branch information
Firefly35 committed Feb 4, 2022
1 parent f85f96b commit 47582be
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packagedependencies.pri
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ CONFIG(release,debug|release) {
CONANBUILDTYPE = Release
}

exists($$_PRO_FILE_PWD_/build/configure_conditions.pri) {
include($$_PRO_FILE_PWD_/build/configure_conditions.pri)
exists($$_PRO_FILE_PWD_/build/$${REMAKEN_FULL_PLATFORM}/configure_conditions.pri) {
include($$_PRO_FILE_PWD_/build/$${REMAKEN_FULL_PLATFORM}/configure_conditions.pri)
}

# Check input parameters existence
Expand Down Expand Up @@ -212,10 +212,10 @@ QMAKE_DISTCLEAN += $$OUT_PWD/$${BCOMPFX}$${TARGET}.pc
# PROJECTDEPLOYDIR only defined for lib
defined(PROJECTDEPLOYDIR,var) {
package_files.path = $${PROJECTDEPLOYDIR}
exists($$_PRO_FILE_PWD_/build/$${PKGDEPFILENAME}) {
exists($$_PRO_FILE_PWD_/build/$${REMAKEN_FULL_PLATFORM}/$${PKGDEPFILENAME}) {
package_files.files = $$_PRO_FILE_PWD_/build/$${REMAKEN_FULL_PLATFORM}/$${PKGDEPFILENAME}
}
exists($$_PRO_FILE_PWD_/build/$${EXTRADEPFILENAME}) {
exists($$_PRO_FILE_PWD_/build/$${REMAKEN_FULL_PLATFORM}/$${EXTRADEPFILENAME}) {
package_files.files = $$_PRO_FILE_PWD_/build/$${REMAKEN_FULL_PLATFORM}/$${EXTRADEPFILENAME}
}
exists($$OUT_PWD/$${BCOMPFX}$${TARGET}.pc) {
Expand Down

0 comments on commit 47582be

Please sign in to comment.