-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathZillaApp-vs.props
258 lines (258 loc) · 20 KB
/
ZillaApp-vs.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Label="UserMacros">
<VisualStudioYear Condition="'$(VisualStudioVersion)' == '11.0' Or '$(PlatformToolsetVersion)' == '110' Or '$(MSBuildToolsVersion)' == '4.0'">2012</VisualStudioYear>
<VisualStudioYear Condition="'$(VisualStudioVersion)' == '12.0' Or '$(PlatformToolsetVersion)' == '120' Or '$(MSBuildToolsVersion)' == '12.0'">2013</VisualStudioYear>
<VisualStudioYear Condition="'$(VisualStudioVersion)' == '14.0' Or '$(PlatformToolsetVersion)' == '140' Or '$(MSBuildToolsVersion)' == '14.0'">2015</VisualStudioYear>
<VisualStudioYear Condition="'$(VisualStudioVersion)' == '15.0' Or '$(PlatformToolsetVersion)' == '141' Or '$(MSBuildToolsVersion)' == '15.0'">2017</VisualStudioYear>
<VisualStudioYear Condition="'$(VisualStudioVersion)' == '16.0' Or '$(PlatformToolsetVersion)' == '142' Or '$(MSBuildToolsVersion)' == '16.0'">2019</VisualStudioYear>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<Import Project="ZillaLib-vs.props" Condition="exists('ZillaLib-vs.props')" />
<PropertyGroup Label="Configuration">
<PlatformToolsetPostfix Condition="'$(UseXPToolset)' != ''">_xp</PlatformToolsetPostfix>
<PlatformToolset Condition="'$(VisualStudioYear)' == '2012'">v110_xp</PlatformToolset>
<PlatformToolset Condition="'$(VisualStudioYear)' == '2013'">v120_xp</PlatformToolset>
<PlatformToolset Condition="'$(VisualStudioYear)' == '2015'">v140$(PlatformToolsetPostfix)</PlatformToolset>
<PlatformToolset Condition="'$(VisualStudioYear)' == '2017'">v141$(PlatformToolsetPostfix)</PlatformToolset>
<PlatformToolset Condition="'$(VisualStudioYear)' == '2019'">v142$(PlatformToolsetPostfix)</PlatformToolset>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Debug'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release' Or '$(Configuration)'=='ReleaseWithPDB'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<WholeProgramOptimization>true</WholeProgramOptimization>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='WebAssembly-Debug' Or '$(Configuration)'=='WebAssembly-Release'" Label="Configuration">
<ConfigurationType>Makefile</ConfigurationType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Emscripten-Debug' Or '$(Configuration)'=='Emscripten-Release'" Label="Configuration">
<ConfigurationType>Makefile</ConfigurationType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='NACL-Debug' Or '$(Configuration)'=='NACL-Release'" Label="Configuration">
<ConfigurationType>Makefile</ConfigurationType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Android-Debug' Or '$(Configuration)'=='Android-Release'" Label="Configuration">
<ConfigurationType>Makefile</ConfigurationType>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
<LinkIncremental>true</LinkIncremental>
<GenerateManifest>false</GenerateManifest>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release' Or '$(Configuration)'=='ReleaseWithPDB'">
<LinkIncremental>false</LinkIncremental>
<GenerateManifest>false</GenerateManifest>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<OutDir>Debug-vs$(VisualStudioYear)\</OutDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32' Or '$(Configuration)|$(Platform)'=='ReleaseWithPDB|Win32'">
<OutDir>Release-vs$(VisualStudioYear)\</OutDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<OutDir>Debug-vs$(VisualStudioYear)x64\</OutDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64' Or '$(Configuration)|$(Platform)'=='ReleaseWithPDB|x64'">
<OutDir>Release-vs$(VisualStudioYear)x64\</OutDir>
</PropertyGroup>
<PropertyGroup Condition="'$(DataAssets)'!='' And ('$(Configuration)'=='Release' Or '$(Configuration)'=='ReleaseWithPDB')">
<LocalDebuggerCommand>$(OutDir)$(TargetName)_WithData.exe</LocalDebuggerCommand>
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='WebAssembly-Debug'">
<OutDir>Debug-wasm\</OutDir>
<NMakeBuildCommandLine>"$(ZillaLibDir)/Tools/make.exe" --no-print-directory -f "$(ZillaLibDir)/WebAssembly/ZillaLibWasm.mk" "ZillaApp=$(ProjectName)" MSVC=1</NMakeBuildCommandLine>
<NMakeReBuildCommandLine>"$(ZillaLibDir)/Tools/make.exe" -B --no-print-directory -f "$(ZillaLibDir)/WebAssembly/ZillaLibWasm.mk" "ZillaApp=$(ProjectName)" MSVC=1</NMakeReBuildCommandLine>
<NMakeCleanCommandLine>"$(ZillaLibDir)/Tools/make.exe" --no-print-directory -f "$(ZillaLibDir)/WebAssembly/ZillaLibWasm.mk" "ZillaApp=$(ProjectName)" clean</NMakeCleanCommandLine>
<LocalDebuggerCommand>$(ZillaLibDir)/Tools/make.exe</LocalDebuggerCommand>
<LocalDebuggerCommandArguments>--no-print-directory -f "$(ZillaLibDir)/WebAssembly/ZillaLibWasm.mk" "ZillaApp=$(ProjectName)" run RUNWITHOUTBUILD=1</LocalDebuggerCommandArguments>
<NMakePreprocessorDefinitions>__wasm__</NMakePreprocessorDefinitions>
<IncludePath>$(ZillaLibDir)/Include</IncludePath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='WebAssembly-Release'">
<OutDir>Release-wasm\</OutDir>
<NMakeBuildCommandLine>"$(ZillaLibDir)/Tools/make.exe" --no-print-directory -f "$(ZillaLibDir)/WebAssembly/ZillaLibWasm.mk" "ZillaApp=$(ProjectName)" BUILD=RELEASE MSVC=1</NMakeBuildCommandLine>
<NMakeReBuildCommandLine>"$(ZillaLibDir)/Tools/make.exe" -B --no-print-directory -f "$(ZillaLibDir)/WebAssembly/ZillaLibWasm.mk" "ZillaApp=$(ProjectName)" BUILD=RELEASE MSVC=1</NMakeReBuildCommandLine>
<NMakeCleanCommandLine>"$(ZillaLibDir)/Tools/make.exe" --no-print-directory -f "$(ZillaLibDir)/WebAssembly/ZillaLibWasm.mk" "ZillaApp=$(ProjectName)" BUILD=RELEASE clean</NMakeCleanCommandLine>
<LocalDebuggerCommand>$(ZillaLibDir)/Tools/make.exe</LocalDebuggerCommand>
<LocalDebuggerCommandArguments>--no-print-directory -f "$(ZillaLibDir)/WebAssembly/ZillaLibWasm.mk" "ZillaApp=$(ProjectName)" BUILD=RELEASE run RUNWITHOUTBUILD=1</LocalDebuggerCommandArguments>
<NMakePreprocessorDefinitions>__wasm__</NMakePreprocessorDefinitions>
<IncludePath>$(ZillaLibDir)/Include</IncludePath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Emscripten-Debug'">
<OutDir>Debug-emscripten\</OutDir>
<NMakeBuildCommandLine>"$(ZillaLibDir)/Tools/make.exe" --no-print-directory -f "$(ZillaLibDir)/Emscripten/ZillaLibEmscripten.mk" "ZillaApp=$(ProjectName)" MSVC=1</NMakeBuildCommandLine>
<NMakeReBuildCommandLine>"$(ZillaLibDir)/Tools/make.exe" -B --no-print-directory -f "$(ZillaLibDir)/Emscripten/ZillaLibEmscripten.mk" "ZillaApp=$(ProjectName)" MSVC=1</NMakeReBuildCommandLine>
<NMakeCleanCommandLine>"$(ZillaLibDir)/Tools/make.exe" --no-print-directory -f "$(ZillaLibDir)/Emscripten/ZillaLibEmscripten.mk" "ZillaApp=$(ProjectName)" clean</NMakeCleanCommandLine>
<LocalDebuggerCommand>$(ZillaLibDir)/Tools/make.exe</LocalDebuggerCommand>
<LocalDebuggerCommandArguments>--no-print-directory -f "$(ZillaLibDir)/Emscripten/ZillaLibEmscripten.mk" "ZillaApp=$(ProjectName)" run RUNWITHOUTBUILD=1</LocalDebuggerCommandArguments>
<NMakePreprocessorDefinitions>__EMSCRIPTEN__</NMakePreprocessorDefinitions>
<IncludePath>$(ZillaLibDir)/Include</IncludePath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Emscripten-Release'">
<OutDir>Release-emscripten\</OutDir>
<NMakeBuildCommandLine>"$(ZillaLibDir)/Tools/make.exe" --no-print-directory -f "$(ZillaLibDir)/Emscripten/ZillaLibEmscripten.mk" "ZillaApp=$(ProjectName)" BUILD=RELEASE MSVC=1</NMakeBuildCommandLine>
<NMakeReBuildCommandLine>"$(ZillaLibDir)/Tools/make.exe" -B --no-print-directory -f "$(ZillaLibDir)/Emscripten/ZillaLibEmscripten.mk" "ZillaApp=$(ProjectName)" BUILD=RELEASE MSVC=1</NMakeReBuildCommandLine>
<NMakeCleanCommandLine>"$(ZillaLibDir)/Tools/make.exe" --no-print-directory -f "$(ZillaLibDir)/Emscripten/ZillaLibEmscripten.mk" "ZillaApp=$(ProjectName)" BUILD=RELEASE clean</NMakeCleanCommandLine>
<LocalDebuggerCommand>$(ZillaLibDir)/Tools/make.exe</LocalDebuggerCommand>
<LocalDebuggerCommandArguments>--no-print-directory -f "$(ZillaLibDir)/Emscripten/ZillaLibEmscripten.mk" "ZillaApp=$(ProjectName)" BUILD=RELEASE run RUNWITHOUTBUILD=1</LocalDebuggerCommandArguments>
<NMakePreprocessorDefinitions>__EMSCRIPTEN__</NMakePreprocessorDefinitions>
<IncludePath>$(ZillaLibDir)/Include</IncludePath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='NACL-Debug'">
<OutDir>Debug-nacl\</OutDir>
<NMakeBuildCommandLine>"$(ZillaLibDir)/Tools/make.exe" --no-print-directory -f "$(ZillaLibDir)/NACL/ZillaLibNACL.mk" "ZillaApp=$(ProjectName)" MSVC=1</NMakeBuildCommandLine>
<NMakeReBuildCommandLine>"$(ZillaLibDir)/Tools/make.exe" -B --no-print-directory -f "$(ZillaLibDir)/NACL/ZillaLibNACL.mk" "ZillaApp=$(ProjectName)" MSVC=1</NMakeReBuildCommandLine>
<NMakeCleanCommandLine>"$(ZillaLibDir)/Tools/make.exe" --no-print-directory -f "$(ZillaLibDir)/NACL/ZillaLibNACL.mk" "ZillaApp=$(ProjectName)" clean</NMakeCleanCommandLine>
<LocalDebuggerCommand>$(ZillaLibDir)/Tools/make.exe</LocalDebuggerCommand>
<LocalDebuggerCommandArguments>--no-print-directory -f "$(ZillaLibDir)/NACL/ZillaLibNACL.mk" "ZillaApp=$(ProjectName)" run RUNWITHOUTBUILD=1</LocalDebuggerCommandArguments>
<NMakePreprocessorDefinitions>__native_client__</NMakePreprocessorDefinitions>
<IncludePath>$(ZillaLibDir)/Include</IncludePath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='NACL-Release'">
<OutDir>Release-nacl\</OutDir>
<NMakeBuildCommandLine>"$(ZillaLibDir)/Tools/make.exe" --no-print-directory -f "$(ZillaLibDir)/NACL/ZillaLibNACL.mk" "ZillaApp=$(ProjectName)" BUILD=RELEASE MSVC=1</NMakeBuildCommandLine>
<NMakeReBuildCommandLine>"$(ZillaLibDir)/Tools/make.exe" -B --no-print-directory -f "$(ZillaLibDir)/NACL/ZillaLibNACL.mk" "ZillaApp=$(ProjectName)" BUILD=RELEASE MSVC=1</NMakeReBuildCommandLine>
<NMakeCleanCommandLine>"$(ZillaLibDir)/Tools/make.exe" --no-print-directory -f "$(ZillaLibDir)/NACL/ZillaLibNACL.mk" "ZillaApp=$(ProjectName)" BUILD=RELEASE clean</NMakeCleanCommandLine>
<LocalDebuggerCommand>$(ZillaLibDir)/Tools/make.exe</LocalDebuggerCommand>
<LocalDebuggerCommandArguments>--no-print-directory -f "$(ZillaLibDir)/NACL/ZillaLibNACL.mk" "ZillaApp=$(ProjectName)" BUILD=RELEASE run RUNWITHOUTBUILD=1</LocalDebuggerCommandArguments>
<NMakePreprocessorDefinitions>__native_client__</NMakePreprocessorDefinitions>
<IncludePath>$(ZillaLibDir)/Include</IncludePath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Android-Debug'">
<OutDir>Android\bin\</OutDir>
<NMakeBuildCommandLine>"$(ZillaLibDir)\Tools\make.exe" -f "$(ZillaLibDir)\Android\ZillaLibAndroid.mk" ZLDEBUG=1 "ZillaApp=$(ProjectName)"</NMakeBuildCommandLine>
<NMakeReBuildCommandLine>"$(ZillaLibDir)\Tools\make.exe" -f "$(ZillaLibDir)\Android\ZillaLibAndroid.mk" ZLDEBUG=1 "ZillaApp=$(ProjectName)" -B</NMakeReBuildCommandLine>
<NMakeCleanCommandLine>"$(ZillaLibDir)\Tools\make.exe" -f "$(ZillaLibDir)\Android\ZillaLibAndroid.mk" ZLDEBUG=1 "ZillaApp=$(ProjectName)" clean</NMakeCleanCommandLine>
<LocalDebuggerCommand>$(ZillaLibDir)\Tools\make.exe</LocalDebuggerCommand>
<LocalDebuggerCommandArguments>-f "$(ZillaLibDir)\Android\ZillaLibAndroid.mk" ZLDEBUG=1 "ZillaApp=$(ProjectName)" -k install pauseatend</LocalDebuggerCommandArguments>
<NMakePreprocessorDefinitions>ANDROID</NMakePreprocessorDefinitions>
<IncludePath>$(ZillaLibDir)/Include</IncludePath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Android-Release'">
<OutDir>Android\bin\</OutDir>
<NMakeBuildCommandLine>"$(ZillaLibDir)\Tools\make.exe" -f "$(ZillaLibDir)\Android\ZillaLibAndroid.mk" ZLDEBUG=0 "ZillaApp=$(ProjectName)"</NMakeBuildCommandLine>
<NMakeReBuildCommandLine>"$(ZillaLibDir)\Tools\make.exe" -f "$(ZillaLibDir)\Android\ZillaLibAndroid.mk" ZLDEBUG=0 "ZillaApp=$(ProjectName)" -B</NMakeReBuildCommandLine>
<NMakeCleanCommandLine>"$(ZillaLibDir)\Tools\make.exe" -f "$(ZillaLibDir)\Android\ZillaLibAndroid.mk" ZLDEBUG=0 "ZillaApp=$(ProjectName)" clean</NMakeCleanCommandLine>
<LocalDebuggerCommand>$(ZillaLibDir)\Tools\make.exe</LocalDebuggerCommand>
<LocalDebuggerCommandArguments>-f "$(ZillaLibDir)\Android\ZillaLibAndroid.mk" ZLDEBUG=0 "ZillaApp=$(ProjectName)" -k install pauseatend</LocalDebuggerCommandArguments>
<NMakePreprocessorDefinitions>ANDROID</NMakePreprocessorDefinitions>
<IncludePath>$(ZillaLibDir)/Include</IncludePath>
</PropertyGroup>
<PropertyGroup>
<IntDir>$(OutDir)</IntDir>
<TLogLocation>$(OutDir)</TLogLocation>
<IntermediateOutputPath>$(OutDir)</IntermediateOutputPath>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)'=='Debug'">
<ClCompile>
<AdditionalOptions>/MP %(AdditionalOptions)</AdditionalOptions>
<Optimization>Disabled</Optimization>
<AdditionalIncludeDirectories>$(ZillaLibDir)/Include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_DEBUG;_HAS_EXCEPTIONS=0;_CONSOLE;ZILLALOG;%(PreprocessorDefinitions);$(CmdLinePreprocessorDefinitions)</PreprocessorDefinitions>
<MinimalRebuild>false</MinimalRebuild>
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
<BufferSecurityCheck>false</BufferSecurityCheck>
<ProgramDataBaseFileName>$(OutDir)$(TargetName).pdb</ProgramDataBaseFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
<ExceptionHandling>false</ExceptionHandling>
<RuntimeTypeInfo>false</RuntimeTypeInfo>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
</ClCompile>
<ResourceCompile>
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<Culture>0x0807</Culture>
</ResourceCompile>
<Link>
<AdditionalDependencies>$(ZillaLibDir)/$(OutDir)ZillaLib.lib;%(AdditionalDependencies)</AdditionalDependencies>
<SuppressStartupBanner>true</SuppressStartupBanner>
<IgnoreSpecificDefaultLibraries>libcmt;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
<GenerateDebugInformation>true</GenerateDebugInformation>
<ProgramDatabaseFile>$(OutDir)$(TargetName).pdb</ProgramDatabaseFile>
<SubSystem>Console</SubSystem>
<RandomizedBaseAddress>false</RandomizedBaseAddress>
<ImageHasSafeExceptionHandlers>false</ImageHasSafeExceptionHandlers>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32' Or '$(Configuration)|$(Platform)'=='ReleaseWithPDB|Win32'">
<ClCompile>
<EnableEnhancedInstructionSet>StreamingSIMDExtensions</EnableEnhancedInstructionSet>
</ClCompile>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)'=='Release' Or '$(Configuration)'=='ReleaseWithPDB'">
<ClCompile>
<Optimization>Full</Optimization>
<AdditionalIncludeDirectories>$(ZillaLibDir)/Include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;NDEBUG;_HAS_EXCEPTIONS=0;%(PreprocessorDefinitions);$(CmdLinePreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
<FunctionLevelLinking>true</FunctionLevelLinking>
<BufferSecurityCheck>false</BufferSecurityCheck>
<ProgramDataBaseFileName>$(OutDir)$(TargetName).pdb</ProgramDataBaseFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<ExceptionHandling>false</ExceptionHandling>
<OmitFramePointers>true</OmitFramePointers>
<IntrinsicFunctions>true</IntrinsicFunctions>
<FavorSizeOrSpeed>Size</FavorSizeOrSpeed>
<WholeProgramOptimization>true</WholeProgramOptimization>
<InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
<FloatingPointExceptions>false</FloatingPointExceptions>
<RuntimeTypeInfo>false</RuntimeTypeInfo>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<AdditionalOptions Condition="'$(VisualStudioYear)' >= '2013'">/Gw %(AdditionalOptions)</AdditionalOptions>
</ClCompile>
<ResourceCompile>
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<Culture>0x0807</Culture>
</ResourceCompile>
<Link>
<AdditionalDependencies>$(ZillaLibDir)/$(OutDir)ZillaLib.lib;%(AdditionalDependencies)</AdditionalDependencies>
<SuppressStartupBanner>true</SuppressStartupBanner>
<ProgramDatabaseFile>$(OutDir)$(TargetName).pdb</ProgramDatabaseFile>
<GenerateMapFile>true</GenerateMapFile>
<MapFileName>$(OutDir)$(TargetName).map</MapFileName>
<SubSystem>Windows</SubSystem>
<ImageHasSafeExceptionHandlers>false</ImageHasSafeExceptionHandlers>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
<LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration>
<IgnoreEmbeddedIDL>true</IgnoreEmbeddedIDL>
<GenerateWindowsMetadata>false</GenerateWindowsMetadata>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(DataAssets)'!='' And ('$(Configuration)'=='Release' Or '$(Configuration)'=='ReleaseWithPDB') And $(SkipDataAssets)==''">
<PostBuildEvent>
<Command>
"$(PythonDir)python" -c "import sys,os,zipfile;z=zipfile.ZipFile(sys.argv[1],'w');[z.write(a) for a in sys.argv[2:]];[z.write(r+'/'+f) for a in sys.argv[2:] for r,d,fs in os.walk(a) for f in fs]" "$(TargetDir)ASSETS.ZIP" $(DataAssets) 2>nul:
if errorlevel 1 7z u -y -bd -mx0 "$(TargetDir)ASSETS.ZIP" $(DataAssets) 2>nul:
if not exist "$(TargetDir)ASSETS.ZIP" echo ERROR: && echo ERROR: Could not find "$(TargetDir)ASSETS.ZIP" && echo ERROR: Create it with 'store' mode (no compression) containing all your asset data files and directories && echo ERROR: To create it automatically, define a User Macro 'PythonDir' (ending with a backslash) in the Cpp.user Property Sheet to where python.exe is stored && echo ERROR: Or put a directory containing either 7z.exe or python.exe into Executable Directories of the Cpp.user Property Sheet or into system PATH && echo ERROR: && exit 1
copy /Y /B "$(TargetPath)" + "$(TargetDir)ASSETS.ZIP" "$(TargetDir)$(TargetName)_WithData.exe" 2>nul: >nul:
if errorlevel 1 exit 1
echo Packed data assets into $(TargetDir)$(TargetName)_WithData.exe
</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)'=='ReleaseWithPDB'">
<ClCompile>
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
</ClCompile>
<Link>
<GenerateDebugInformation>true</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ProjectReference Include="$(ZillaLibDir)/ZillaLib-vs.vcxproj">
<Project>{2177A217-7A21-77A2-177A-2177A2177777}</Project>
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
</ProjectReference>
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
</Project>