diff options
author | Arnon Gilboa <agilboa@redhat.com> | 2011-05-22 14:59:55 +0300 |
---|---|---|
committer | Arnon Gilboa <agilboa@redhat.com> | 2011-05-22 14:59:55 +0300 |
commit | a973e87a0587beb8d1217173e938047c89295fba (patch) | |
tree | e7d1043482f20b11eb4a943364ff19499a68488a | |
parent | 87a834f22745b90c0b3429499157fd332a19e817 (diff) | |
download | spice-a973e87a0587beb8d1217173e938047c89295fba.tar.gz spice-a973e87a0587beb8d1217173e938047c89295fba.tar.xz spice-a973e87a0587beb8d1217173e938047c89295fba.zip |
client/windows: remove precompiled header for common.h (fix broken windows debug build)
-Release currently doesn't use precompiled headers at all
-Debug is broken since common/*.c files don't include common.h
-PCH can be enabled for all but specifically-chosen c-files
-rw-r--r-- | client/windows/redc.vcproj | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/client/windows/redc.vcproj b/client/windows/redc.vcproj index 17032f72..38bcb36e 100644 --- a/client/windows/redc.vcproj +++ b/client/windows/redc.vcproj @@ -54,8 +54,8 @@ MinimalRebuild="false"
BasicRuntimeChecks="3"
RuntimeLibrary="1"
- UsePrecompiledHeader="1"
- PrecompiledHeaderThrough="common.h"
+ UsePrecompiledHeader="0"
+ PrecompiledHeaderThrough=""
WarningLevel="3"
WarnAsError="false"
Detect64BitPortabilityProblems="false"
@@ -142,8 +142,8 @@ MinimalRebuild="false"
BasicRuntimeChecks="3"
RuntimeLibrary="1"
- UsePrecompiledHeader="1"
- PrecompiledHeaderThrough="common.h"
+ UsePrecompiledHeader="0"
+ PrecompiledHeaderThrough=""
WarningLevel="3"
WarnAsError="false"
Detect64BitPortabilityProblems="false"
|