|
@@ -71,22 +71,31 @@
|
71
|
71
|
<PropertyGroup Label="UserMacros" />
|
72
|
72
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
73
|
73
|
<LinkIncremental>true</LinkIncremental>
|
|
74
|
+ <OutDir>$(SolutionDir)Build\$(Platform)_$(Configuration)\</OutDir>
|
|
75
|
+ <IntDir>$(SolutionDir)Build\Intermediates\$(ProjectName)_$(Platform)_$(Configuration)\</IntDir>
|
74
|
76
|
</PropertyGroup>
|
75
|
77
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
76
|
78
|
<LinkIncremental>true</LinkIncremental>
|
|
79
|
+ <OutDir>$(SolutionDir)Build\$(Platform)_$(Configuration)\</OutDir>
|
|
80
|
+ <IntDir>$(SolutionDir)Build\Intermediates\$(ProjectName)_$(Platform)_$(Configuration)\</IntDir>
|
77
|
81
|
</PropertyGroup>
|
78
|
82
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
79
|
83
|
<LinkIncremental>false</LinkIncremental>
|
|
84
|
+ <OutDir>$(SolutionDir)Build\$(Platform)_$(Configuration)\</OutDir>
|
|
85
|
+ <IntDir>$(SolutionDir)Build\Intermediates\$(ProjectName)_$(Platform)_$(Configuration)\</IntDir>
|
80
|
86
|
</PropertyGroup>
|
81
|
87
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
82
|
88
|
<LinkIncremental>false</LinkIncremental>
|
|
89
|
+ <OutDir>$(SolutionDir)Build\$(Platform)_$(Configuration)\</OutDir>
|
|
90
|
+ <IntDir>$(SolutionDir)Build\Intermediates\$(ProjectName)_$(Platform)_$(Configuration)\</IntDir>
|
83
|
91
|
</PropertyGroup>
|
84
|
92
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
85
|
93
|
<ClCompile>
|
86
|
|
- <PrecompiledHeader>Use</PrecompiledHeader>
|
|
94
|
+ <PrecompiledHeader>NotUsing</PrecompiledHeader>
|
87
|
95
|
<WarningLevel>Level3</WarningLevel>
|
88
|
96
|
<Optimization>Disabled</Optimization>
|
89
|
|
- <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
97
|
+ <PreprocessorDefinitions>DKGL_STATIC=1;WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
98
|
+ <AdditionalIncludeDirectories>../DK</AdditionalIncludeDirectories>
|
90
|
99
|
</ClCompile>
|
91
|
100
|
<Link>
|
92
|
101
|
<SubSystem>Windows</SubSystem>
|
|
@@ -95,10 +104,11 @@
|
95
|
104
|
</ItemDefinitionGroup>
|
96
|
105
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
97
|
106
|
<ClCompile>
|
98
|
|
- <PrecompiledHeader>Use</PrecompiledHeader>
|
|
107
|
+ <PrecompiledHeader>NotUsing</PrecompiledHeader>
|
99
|
108
|
<WarningLevel>Level3</WarningLevel>
|
100
|
109
|
<Optimization>Disabled</Optimization>
|
101
|
|
- <PreprocessorDefinitions>_DEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
110
|
+ <PreprocessorDefinitions>DKGL_STATIC=1;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
111
|
+ <AdditionalIncludeDirectories>../DK</AdditionalIncludeDirectories>
|
102
|
112
|
</ClCompile>
|
103
|
113
|
<Link>
|
104
|
114
|
<SubSystem>Windows</SubSystem>
|
|
@@ -108,11 +118,12 @@
|
108
|
118
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
109
|
119
|
<ClCompile>
|
110
|
120
|
<WarningLevel>Level3</WarningLevel>
|
111
|
|
- <PrecompiledHeader>Use</PrecompiledHeader>
|
|
121
|
+ <PrecompiledHeader>NotUsing</PrecompiledHeader>
|
112
|
122
|
<Optimization>MaxSpeed</Optimization>
|
113
|
123
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
114
|
124
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
115
|
|
- <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
125
|
+ <PreprocessorDefinitions>DKGL_STATIC=1;WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
126
|
+ <AdditionalIncludeDirectories>../DK</AdditionalIncludeDirectories>
|
116
|
127
|
</ClCompile>
|
117
|
128
|
<Link>
|
118
|
129
|
<SubSystem>Windows</SubSystem>
|
|
@@ -124,11 +135,12 @@
|
124
|
135
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
125
|
136
|
<ClCompile>
|
126
|
137
|
<WarningLevel>Level3</WarningLevel>
|
127
|
|
- <PrecompiledHeader>Use</PrecompiledHeader>
|
|
138
|
+ <PrecompiledHeader>NotUsing</PrecompiledHeader>
|
128
|
139
|
<Optimization>MaxSpeed</Optimization>
|
129
|
140
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
130
|
141
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
131
|
|
- <PreprocessorDefinitions>NDEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
142
|
+ <PreprocessorDefinitions>DKGL_STATIC=1;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
143
|
+ <AdditionalIncludeDirectories>../DK</AdditionalIncludeDirectories>
|
132
|
144
|
</ClCompile>
|
133
|
145
|
<Link>
|
134
|
146
|
<SubSystem>Windows</SubSystem>
|
|
@@ -138,29 +150,24 @@
|
138
|
150
|
</Link>
|
139
|
151
|
</ItemDefinitionGroup>
|
140
|
152
|
<ItemGroup>
|
141
|
|
- <Text Include="ReadMe.txt" />
|
|
153
|
+ <ClInclude Include="Win32\Resource.h" />
|
|
154
|
+ <ClInclude Include="Win32\stdafx.h" />
|
|
155
|
+ <ClInclude Include="Win32\targetver.h" />
|
142
|
156
|
</ItemGroup>
|
143
|
157
|
<ItemGroup>
|
144
|
|
- <ClInclude Include="Resource.h" />
|
145
|
|
- <ClInclude Include="stdafx.h" />
|
146
|
|
- <ClInclude Include="targetver.h" />
|
147
|
|
- <ClInclude Include="TestApp1.h" />
|
|
158
|
+ <ClCompile Include="TestApp1.cpp" />
|
148
|
159
|
</ItemGroup>
|
149
|
160
|
<ItemGroup>
|
150
|
|
- <ClCompile Include="stdafx.cpp">
|
151
|
|
- <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader>
|
152
|
|
- <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Create</PrecompiledHeader>
|
153
|
|
- <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader>
|
154
|
|
- <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Create</PrecompiledHeader>
|
155
|
|
- </ClCompile>
|
156
|
|
- <ClCompile Include="TestApp1.cpp" />
|
|
161
|
+ <ResourceCompile Include="Win32\TestApp1.rc" />
|
157
|
162
|
</ItemGroup>
|
158
|
163
|
<ItemGroup>
|
159
|
|
- <ResourceCompile Include="TestApp1.rc" />
|
|
164
|
+ <Image Include="Win32\small.ico" />
|
|
165
|
+ <Image Include="Win32\TestApp1.ico" />
|
160
|
166
|
</ItemGroup>
|
161
|
167
|
<ItemGroup>
|
162
|
|
- <Image Include="small.ico" />
|
163
|
|
- <Image Include="TestApp1.ico" />
|
|
168
|
+ <ProjectReference Include="..\DK\DK_static.vcxproj">
|
|
169
|
+ <Project>{c7312831-a3f6-4e7d-962b-6786972f0a6a}</Project>
|
|
170
|
+ </ProjectReference>
|
164
|
171
|
</ItemGroup>
|
165
|
172
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
166
|
173
|
<ImportGroup Label="ExtensionTargets">
|