40d4c1b2ed
the problem is that there is no sed command on windows ... so build it into qmake and invoke that from the generated makefiles. cmake does the same, after all. ^^ Task-number: QTBUG-33794 Change-Id: Ib7077e18acbc5edd79f714c5779a5ed31ea6c093 Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
18 lines
735 B
Plaintext
18 lines
735 B
Plaintext
QMAKE_ZIP = zip -r -9
|
|
|
|
QMAKE_COPY = copy /y
|
|
QMAKE_COPY_DIR = xcopy /s /q /y /i
|
|
QMAKE_MOVE = move
|
|
QMAKE_DEL_FILE = del
|
|
QMAKE_DEL_DIR = rmdir
|
|
QMAKE_CHK_EXISTS = if not exist %1
|
|
QMAKE_CHK_DIR_EXISTS = if not exist # legacy
|
|
QMAKE_MKDIR = mkdir # legacy
|
|
QMAKE_MKDIR_CMD = if not exist %1 mkdir %1 & if not exist %1 exit 1
|
|
# Ugly hack to support cross-building for unix (android).
|
|
QMAKE_SYMBOLIC_LINK = $$QMAKE_COPY
|
|
QMAKE_LN_SHLIB = $$QMAKE_SYMBOLIC_LINK
|
|
# xcopy copies the contained files if source is a directory. Deal with it.
|
|
CONFIG += copy_dir_files
|
|
QMAKE_STREAM_EDITOR = $(QMAKE) -install sed
|