diff options
author | Tim Jenssen <tim.jenssen@digia.com> | 2013-05-24 13:06:39 +0200 |
---|---|---|
committer | Tim Jenssen <tim.jenssen@digia.com> | 2013-05-24 14:03:11 +0200 |
commit | 6dde0f8106b231ace5f89e6fb6519581564f4d98 (patch) | |
tree | c0901f335e6498815763266e326ba982d7b02624 /src/libs/installer/installer.pro | |
parent | 802fe64d729a48d6731d2ec82b43e0cc1e8edc32 (diff) |
disable batch compile rules
- this is needed if the pri file includes cpp
files with already existing cpp file names
Change-Id: I00798a08ad7af990ae9aabd5c1f91edc9ee4307f
Reviewed-by: Karsten Heimrich <karsten.heimrich@digia.com>
Diffstat (limited to 'src/libs/installer/installer.pro')
-rw-r--r-- | src/libs/installer/installer.pro | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/libs/installer/installer.pro b/src/libs/installer/installer.pro index 6ce99ddc3..956814d50 100644 --- a/src/libs/installer/installer.pro +++ b/src/libs/installer/installer.pro @@ -14,6 +14,10 @@ include(../../../installerfw.pri) # your files if needed HEADERS += productkeycheck.h !isEmpty(PRODUCTKEYCHECK_PRI_FILE) { + # use undocumented no_batch config which disable the implicit rules on msvc compilers + # this fixes the problem that same cpp files in different directories are overwritting + # each other + CONFIG += no_batch include($$PRODUCTKEYCHECK_PRI_FILE) } else { SOURCES += productkeycheck.cpp |