make QMAKE_RESOLVED_TARGET use normalized path separators
Change-Id: I23433a67364a9d09fa239b2c7f2cae495d3cc6df Reviewed-by: Joerg Bornemann <joerg.bornemann@nokia.com>bb10
parent
61d67ace5f
commit
034b5fd02e
|
|
@ -1,7 +1,6 @@
|
|||
QMAKE_RESOLVED_TARGET = $$absolute_path($$DESTDIR, $$OUT_PWD)/
|
||||
|
||||
win32 {
|
||||
QMAKE_RESOLVED_TARGET ~= s,/,\\,
|
||||
contains(TEMPLATE, .*lib) {
|
||||
isEmpty(TARGET_VERSION_EXT):!isEmpty(VERSION) {
|
||||
TARGET_VERSION_EXT = $$section(VERSION, ., 0, 0)
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ TESTCOCOON_COVERAGE_OPTIONS = \
|
|||
# is built directly in target.path and there is no need to move the csmes.
|
||||
!isEmpty(DESTDIR):contains(TEMPLATE, lib) {
|
||||
!isEmpty(QMAKE_POST_LINK):QMAKE_POST_LINK = $$escape_expand(\\n\\t)$$QMAKE_POST_LINK
|
||||
QMAKE_POST_LINK = -$(MOVE) $${TARGET_BASENAME}.csmes $${QMAKE_RESOLVED_TARGET}.csmes$$QMAKE_POST_LINK
|
||||
QMAKE_POST_LINK = -$(MOVE) $${TARGET_BASENAME}.csmes $$native_path($${QMAKE_RESOLVED_TARGET}.csmes)$$QMAKE_POST_LINK
|
||||
}
|
||||
|
||||
QMAKE_CLEAN += *.csexe *.csmes
|
||||
|
|
|
|||
Loading…
Reference in New Issue