diff options
author | Chun-wei Fan <fanchunwei@src.gnome.org> | 2010-11-09 12:06:34 +0800 |
---|---|---|
committer | Tristan Van Berkom <tristan.van.berkom@gmail.com> | 2010-11-09 16:18:16 +0900 |
commit | 2fd00b9af306f62885d4ab11cd1a1d7c7ebf0132 (patch) | |
tree | 66eed9d482bae14574e75c97a6d8e52ee6d4c86a /build | |
parent | 5c52344551f1dad0cfb15573f6218d3c046554c3 (diff) | |
download | gtk+-2fd00b9af306f62885d4ab11cd1a1d7c7ebf0132.tar.gz |
gtk-demo.vcproj: set linker settings to be consistent
-Made up for the additional dependencies for setups other than Debug|Win32 (the correct setting)
-Made Subsystem="1" for all setups like Debug|Win32 (the correct setting)
Diffstat (limited to 'build')
-rw-r--r-- | build/win32/vs9/gtk-demo.vcproj | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/build/win32/vs9/gtk-demo.vcproj b/build/win32/vs9/gtk-demo.vcproj index c9c87a4415..238896a4b6 100644 --- a/build/win32/vs9/gtk-demo.vcproj +++ b/build/win32/vs9/gtk-demo.vcproj @@ -76,9 +76,10 @@ />
<Tool
Name="VCLinkerTool"
+ AdditionalDependencies="cairo.lib pango-1.0.lib pangocairo-1.0.lib"
LinkIncremental="2"
GenerateDebugInformation="true"
- SubSystem="2"
+ SubSystem="1"
RandomizedBaseAddress="1"
DataExecutionPrevention="0"
TargetMachine="17"
@@ -106,9 +107,10 @@ />
<Tool
Name="VCLinkerTool"
+ AdditionalDependencies="cairo.lib pango-1.0.lib pangocairo-1.0.lib"
LinkIncremental="1"
GenerateDebugInformation="true"
- SubSystem="2"
+ SubSystem="1"
OptimizeReferences="2"
EnableCOMDATFolding="2"
RandomizedBaseAddress="1"
@@ -138,9 +140,10 @@ />
<Tool
Name="VCLinkerTool"
+ AdditionalDependencies="cairo.lib pango-1.0.lib pangocairo-1.0.lib"
LinkIncremental="1"
GenerateDebugInformation="true"
- SubSystem="2"
+ SubSystem="1"
OptimizeReferences="2"
EnableCOMDATFolding="2"
RandomizedBaseAddress="1"
|