37cc4a6499
this is in fact a shell-related flag, which determines how QMAKE_DIR_COPY is assumed to behave. Change-Id: If774f8a83b40c9ae7107c8e7ef7263af8a2e6c6e Reviewed-by: Joerg Bornemann <joerg.bornemann@nokia.com>
15 lines
435 B
Plaintext
15 lines
435 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_DIR_EXISTS = if not exist
|
|
QMAKE_CHK_FILE_EXISTS = if not exist
|
|
QMAKE_CHK_EXISTS_GLUE =
|
|
QMAKE_MKDIR = mkdir
|
|
|
|
# xcopy copies the contained files if source is a directory. Deal with it.
|
|
CONFIG += copy_dir_files
|