1 |
<?xml version="<%xml_version("1.0")%>" encoding="<%encoding("Windows-1252")%>"?>
|
1 |
<?xml version="<%xml_version("1.0")%>" encoding="<%encoding("Windows-1252")%>"?>
|
2 |
<VisualStudioProject
|
2 |
<VisualStudioProject
|
3 |
ProjectType="<%vcprojecttype("Visual C++")%>"
|
3 |
ProjectType="<%vcprojecttype("Visual C++")%>"
|
4 |
Version="<%vcversion%>"
|
4 |
Version="<%vcversion%>"
|
5 |
Name="<%project_name%>"
|
5 |
Name="<%project_name%>"
|
6 |
ProjectGUID="{<%guid%>}"
|
6 |
ProjectGUID="{<%guid%>}"
|
7 |
SccProjectName=""
|
7 |
SccProjectName=""
|
8 |
SccLocalPath="">
|
8 |
SccLocalPath="">
|
9 |
<Platforms>
|
9 |
<Platforms>
|
10 |
<Platform
|
10 |
<Platform
|
11 |
Name="<%platform("Win32")%>"/>
|
11 |
Name="<%platform("Win32")%>"/>
|
12 |
</Platforms>
|
12 |
</Platforms>
|
13 |
<Configurations>
|
13 |
<Configurations>
|
14 |
<%foreach(configurations)%>
|
14 |
<%foreach(configurations)%>
|
15 |
<Configuration
|
15 |
<Configuration
|
16 |
Name="<%configuration%>|<%platform%>"
|
16 |
Name="<%configuration%>|<%platform%>"
|
17 |
OutputDirectory="<%if(type_is_dynamic)%><%if(dllout)%><%dllout%><%else%><%libout%><%endif%><%else%><%if(type_is_static)%><%libout%><%else%><%if(install)%><%install%><%else%><%output_dir%><%endif%><%endif%><%endif%>"
|
17 |
OutputDirectory="<%if(type_is_dynamic)%><%if(dllout)%><%dllout%><%else%><%libout%><%endif%><%else%><%if(type_is_static)%><%libout%><%else%><%if(install)%><%install%><%else%><%output_dir%><%endif%><%endif%><%endif%>"
|
18 |
IntermediateDirectory="<%intermediate_dir%>\<%noextension(project_file)%>"
|
18 |
IntermediateDirectory="<%intermediate_dir%>\<%noextension(project_file)%>"
|
19 |
<%if(type_is_static && staticname)%>
|
19 |
<%if(type_is_static && staticname)%>
|
20 |
ConfigurationType="4"
|
20 |
ConfigurationType="4"
|
21 |
<%else%>
|
21 |
<%else%>
|
22 |
<%if(custom_only)%>
|
22 |
<%if(custom_only)%>
|
23 |
ConfigurationType="10"
|
23 |
ConfigurationType="10"
|
24 |
<%else%>
|
24 |
<%else%>
|
25 |
ConfigurationType="<%configuration_type("2")%>"
|
25 |
ConfigurationType="<%configuration_type("2")%>"
|
26 |
<%endif%>
|
26 |
<%endif%>
|
27 |
<%endif%>
|
27 |
<%endif%>
|
28 |
UseOfMFC="<%use_mfc("0")%>"
|
28 |
UseOfMFC="<%use_mfc("0")%>"
|
29 |
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
29 |
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
30 |
CharacterSet="<%charset("0")%>">
|
30 |
CharacterSet="<%charset("0")%>">
|
31 |
<%if(use_managed_extensions)%>
|
31 |
<%if(use_managed_extensions)%>
|
32 |
ManagedExtensions="TRUE"
|
32 |
ManagedExtensions="TRUE"
|
33 |
<%endif%>
|
33 |
<%endif%>
|
34 |
<%if(!custom_only)%>
|
34 |
<%if(!custom_only)%>
|
35 |
<Tool
|
35 |
<Tool
|
36 |
Name="VCCLCompilerTool"
|
36 |
Name="VCCLCompilerTool"
|
37 |
<%if(compile_flags)%>
|
37 |
<%if(compile_flags)%>
|
38 |
AdditionalOptions="<%compile_flags%>"
|
38 |
AdditionalOptions="<%compile_flags%>"
|
39 |
<%endif%>
|
39 |
<%endif%>
|
40 |
<%if(optimize)%>
|
40 |
<%if(optimize)%>
|
41 |
Optimization="<%optimize%>"
|
41 |
Optimization="<%optimize%>"
|
42 |
<%else%>
|
42 |
<%else%>
|
43 |
Optimization="0"
|
43 |
Optimization="0"
|
44 |
<%endif%>
|
44 |
<%endif%>
|
45 |
AdditionalIncludeDirectories="<%foreach(includes)%><%include%><%fornotlast(",")%><%endfor%>"
|
45 |
AdditionalIncludeDirectories="<%foreach(includes)%><%include%><%fornotlast(",")%><%endfor%>"
|
46 |
PreprocessorDefinitions="<%if(unicode)%>UNICODE;_UNICODE;<%endif%><%if(type_is_dynamic)%><%foreach(dynamicflags)%><%dynamicflag%>;<%endfor%><%endif%><%if(need_staticflags)%><%foreach(staticflags)%><%staticflag%>;<%endfor%><%endif%><%if(pch_header)%><%foreach(pch_defines)%><%pch_define%>;<%endfor%><%endif%><%foreach(defines common_defines macros)%><%define%><%fornotlast(";")%><%endfor%>"
|
46 |
PreprocessorDefinitions="<%if(unicode)%>UNICODE;_UNICODE;<%endif%><%if(type_is_dynamic)%><%foreach(dynamicflags)%><%dynamicflag%>;<%endfor%><%endif%><%if(need_staticflags)%><%foreach(staticflags)%><%staticflag%>;<%endfor%><%endif%><%if(pch_header)%><%foreach(pch_defines)%><%pch_define%>;<%endfor%><%endif%><%foreach(defines common_defines macros)%><%define%><%fornotlast(";")%><%endfor%>"
|
47 |
MinimalRebuild="<%MinimalRebuild("FALSE")%>"
|
47 |
MinimalRebuild="<%MinimalRebuild("FALSE")%>"
|
48 |
ExceptionHandling="TRUE"
|
48 |
ExceptionHandling="TRUE"
|
49 |
<%if(!optimize)%>
|
49 |
<%if(!optimize)%>
|
50 |
BasicRuntimeChecks="<%BasicRuntimeChecks("3")%>"
|
50 |
BasicRuntimeChecks="<%BasicRuntimeChecks("3")%>"
|
51 |
<%endif%>
|
51 |
<%endif%>
|
52 |
<%if(StringPooling)%>
|
52 |
<%if(StringPooling)%>
|
53 |
StringPooling="<%StringPooling%>"
|
53 |
StringPooling="<%StringPooling%>"
|
54 |
<%endif%>
|
54 |
<%endif%>
|
55 |
RuntimeLibrary="<%if(!optimize)%><%runtime_library("3")%><%else%><%runtime_library("2")%><%endif%>"
|
55 |
RuntimeLibrary="<%if(!optimize)%><%runtime_library("3")%><%else%><%runtime_library("2")%><%endif%>"
|
56 |
BufferSecurityCheck="<%BufferSecurityCheck("TRUE")%>"
|
56 |
BufferSecurityCheck="<%BufferSecurityCheck("TRUE")%>"
|
57 |
EnableFunctionLevelLinking="<%EnableFunctionLevelLinking("TRUE")%>"
|
57 |
EnableFunctionLevelLinking="<%EnableFunctionLevelLinking("TRUE")%>"
|
58 |
TreatWChar_tAsBuiltInType="<%wchar_t("TRUE")%>"
|
58 |
TreatWChar_tAsBuiltInType="<%wchar_t("TRUE")%>"
|
59 |
<%if(forloopscope)%>
|
59 |
<%if(forloopscope)%>
|
60 |
ForceConformanceInForLoopScope="<%forloopscope%>"
|
60 |
ForceConformanceInForLoopScope="<%forloopscope%>"
|
61 |
<%endif%>
|
61 |
<%endif%>
|
62 |
RuntimeTypeInfo="<%rtti("TRUE")%>"
|
62 |
RuntimeTypeInfo="<%rtti("TRUE")%>"
|
63 |
<%if(pdbc)%>
|
63 |
<%if(pdbc)%>
|
64 |
ProgramDataBaseFileName="<%if(type_is_static)%><%libout%>\<%libname_prefix%><%staticname%><%if(use_lib_modifier)%><%lib_modifier%><%endif%>.pdb<%else%><%intermediate_dir%>\<%noextension(project_file)%>/<%endif%>"
|
64 |
ProgramDataBaseFileName="<%if(type_is_static)%><%libout%>\<%libname_prefix%><%staticname%><%if(use_lib_modifier)%><%lib_modifier%><%endif%>.pdb<%else%><%intermediate_dir%>\<%noextension(project_file)%>/<%endif%>"
|
65 |
<%endif%>
|
65 |
<%endif%>
|
66 |
<%if(pch_header)%>
|
66 |
<%if(pch_header)%>
|
67 |
<%if(pch_source)%>
|
67 |
<%if(pch_source)%>
|
68 |
UsePrecompiledHeader="3"
|
68 |
UsePrecompiledHeader="3"
|
69 |
<%else%>
|
69 |
<%else%>
|
70 |
UsePrecompiledHeader="2"
|
70 |
UsePrecompiledHeader="2"
|
71 |
<%endif%>
|
71 |
<%endif%>
|
72 |
PrecompiledHeaderThrough="<%pch_header%>"
|
72 |
PrecompiledHeaderThrough="<%pch_header%>"
|
73 |
<%endif%>
|
73 |
<%endif%>
|
74 |
WarningLevel="<%warning_level("3")%>"
|
74 |
WarningLevel="<%warning_level("3")%>"
|
75 |
SuppressStartupBanner="TRUE"
|
75 |
SuppressStartupBanner="TRUE"
|
76 |
Detect64BitPortabilityProblems="<%Detect64BitPortabilityProblems("FALSE")%>"
|
76 |
Detect64BitPortabilityProblems="<%Detect64BitPortabilityProblems("FALSE")%>"
|
77 |
DebugInformationFormat="<%debug_format("3")%>"/>
|
77 |
DebugInformationFormat="<%debug_format("3")%>"/>
|
78 |
<%endif%>
|
78 |
<%endif%>
|
79 |
<Tool
|
79 |
<Tool
|
80 |
Name="VCCustomBuildTool"/>
|
80 |
Name="VCCustomBuildTool"/>
|
81 |
<%if(!custom_only)%>
|
81 |
<%if(!custom_only)%>
|
82 |
<Tool
|
82 |
<Tool
|
83 |
<%if(type_is_static)%>
|
83 |
<%if(type_is_static)%>
|
84 |
Name="VCLibrarianTool"
|
84 |
Name="VCLibrarianTool"
|
85 |
<%if(staticname)%>
|
85 |
<%if(staticname)%>
|
86 |
OutputFile="<%libout%>\<%libname_prefix%><%staticname%><%if(use_lib_modifier)%><%lib_modifier%><%endif%><%lib_ext%>"
|
86 |
OutputFile="<%libout%>\<%libname_prefix%><%staticname%><%if(use_lib_modifier)%><%lib_modifier%><%endif%><%lib_ext%>"
|
87 |
<%endif%>
|
87 |
<%endif%>
|
88 |
<%else%>
|
88 |
<%else%>
|
89 |
Name="VCLinkerTool"
|
89 |
Name="VCLinkerTool"
|
90 |
<%if(!source_files)%>
|
90 |
<%if(!source_files)%>
|
91 |
AdditionalOptions="/noentry<%if(link_options)%> <%link_options%><%endif%>"
|
91 |
AdditionalOptions="/noentry<%if(link_options)%> <%link_options%><%endif%>"
|
92 |
<%else%>
|
92 |
<%else%>
|
93 |
<%if(link_options)%>
|
93 |
<%if(link_options)%>
|
94 |
AdditionalOptions="<%link_options%>"
|
94 |
AdditionalOptions="<%link_options%>"
|
95 |
<%endif%>
|
95 |
<%endif%>
|
96 |
<%endif%>
|
96 |
<%endif%>
|
97 |
<%if(type_is_binary)%>
|
97 |
<%if(type_is_binary)%>
|
98 |
AdditionalDependencies="<%foreach(reverse(libs))%><%fornotfirst(" ")%><%libname_prefix%><%lib%><%lib_modifier%><%lib_ext%><%endfor%><%foreach(reverse(lit_libs))%> <%lit_lib%>.lib<%endfor%><%foreach(reverse(pure_libs))%> <%pure_lib%><%endfor%>"
|
98 |
AdditionalDependencies="<%foreach(reverse(libs))%><%fornotfirst(" ")%><%libname_prefix%><%lib%><%lib_modifier%><%lib_ext%><%endfor%><%foreach(reverse(lit_libs))%> <%lit_lib%>.lib<%endfor%><%foreach(reverse(pure_libs))%> <%pure_lib%><%endfor%>"
|
99 |
<%endif%>
|
99 |
<%endif%>
|
100 |
<%if(exename || sharedname || staticname)%>
|
100 |
<%if(exename || sharedname || staticname)%>
|
101 |
OutputFile="$(OutDir)\<%if(type_is_dynamic)%><%libname_prefix%><%sharedname%><%if(use_lib_modifier)%><%lib_modifier%><%endif%><%dll_ext%><%else%><%exename%><%if(use_exe_modifier)%><%lib_modifier%><%endif%><%exe_ext%><%endif%>"
|
101 |
OutputFile="$(OutDir)\<%if(type_is_dynamic)%><%libname_prefix%><%sharedname%><%if(use_lib_modifier)%><%lib_modifier%><%endif%><%dll_ext%><%else%><%exename%><%if(use_exe_modifier)%><%lib_modifier%><%endif%><%exe_ext%><%endif%>"
|
102 |
<%endif%>
|
102 |
<%endif%>
|
103 |
<%if(win_version)%>
|
103 |
<%if(win_version)%>
|
104 |
Version="<%win_version%>"
|
104 |
Version="<%win_version%>"
|
105 |
<%endif%>
|
105 |
<%endif%>
|
106 |
LinkIncremental="<%LinkIncremental("2")%>"
|
106 |
LinkIncremental="<%LinkIncremental("2")%>"
|
107 |
SuppressStartupBanner="TRUE"
|
107 |
SuppressStartupBanner="TRUE"
|
108 |
AdditionalLibraryDirectories="<%foreach(libpaths)%><%libpath%><%fornotlast(";")%><%endfor%>"
|
108 |
AdditionalLibraryDirectories="<%foreach(libpaths)%><%libpath%><%fornotlast(";")%><%endfor%>"
|
109 |
<%if(ignore_default_library_names)%>
|
109 |
<%if(ignore_default_library_names)%>
|
110 |
IgnoreDefaultLibraryNames="<%foreach(ignore_default_library_names)%><%ignore_default_library_name%><%fornotlast(";")%><%endfor%>"
|
110 |
IgnoreDefaultLibraryNames="<%foreach(ignore_default_library_names)%><%ignore_default_library_name%><%fornotlast(";")%><%endfor%>"
|
111 |
<%endif%>
|
111 |
<%endif%>
|
112 |
GenerateDebugInformation="TRUE"
|
112 |
GenerateDebugInformation="TRUE"
|
113 |
<%if(pdbl)%>
|
113 |
<%if(pdbl)%>
|
114 |
<%if(sharedname)%>
|
114 |
<%if(sharedname)%>
|
115 |
ProgramDatabaseFile="$(OutDir)\<%libname_prefix%><%sharedname%><%if(use_lib_modifier)%><%lib_modifier%><%endif%>.pdb"
|
115 |
ProgramDatabaseFile="$(OutDir)\<%libname_prefix%><%sharedname%><%if(use_lib_modifier)%><%lib_modifier%><%endif%>.pdb"
|
116 |
<%else%>
|
116 |
<%else%>
|
117 |
<%if(exename)%>
|
117 |
<%if(exename)%>
|
118 |
ProgramDatabaseFile="$(OutDir)\<%exename%><%if(use_exe_modifier)%><%lib_modifier%><%endif%>.pdb"
|
118 |
ProgramDatabaseFile="$(OutDir)\<%exename%><%if(use_exe_modifier)%><%lib_modifier%><%endif%>.pdb"
|
119 |
<%endif%>
|
119 |
<%endif%>
|
120 |
<%endif%>
|
120 |
<%endif%>
|
121 |
<%endif%>
|
121 |
<%endif%>
|
122 |
SubSystem="<%subsystem("1")%>"
|
122 |
SubSystem="<%subsystem("1")%>"
|
123 |
<%if(StackReserveSize)%>
|
123 |
<%if(StackReserveSize)%>
|
124 |
StackReserveSize="<%StackReserveSize%>"
|
124 |
StackReserveSize="<%StackReserveSize%>"
|
125 |
<%endif%>
|
125 |
<%endif%>
|
126 |
<%if(StackCommitSize)%>
|
126 |
<%if(StackCommitSize)%>
|
127 |
StackCommitSize="<%StackCommitSize%>"
|
127 |
StackCommitSize="<%StackCommitSize%>"
|
128 |
<%endif%>
|
128 |
<%endif%>
|
129 |
<%if(optimize)%>
|
129 |
<%if(optimize)%>
|
130 |
OptimizeReferences="<%optref("2")%>"
|
130 |
OptimizeReferences="<%optref("2")%>"
|
131 |
EnableCOMDATFolding="<%opticf("2")%>"
|
131 |
EnableCOMDATFolding="<%opticf("2")%>"
|
132 |
<%endif%>
|
132 |
<%endif%>
|
133 |
<%if(unicode && unicode_mfc_entry && exename && source_files)%>
|
133 |
<%if(unicode && unicode_mfc_entry && exename && source_files)%>
|
134 |
EntryPointSymbol="<%unicode_mfc_entry%>"
|
134 |
EntryPointSymbol="<%unicode_mfc_entry%>"
|
135 |
<%endif%>
|
135 |
<%endif%>
|
136 |
<%if(type_is_dynamic && sharedname)%>
|
136 |
<%if(type_is_dynamic && sharedname)%>
|
137 |
ImportLibrary="<%libout%>\<%libname_prefix%><%sharedname%><%if(use_lib_modifier)%><%lib_modifier%><%endif%><%lib_ext%>"
|
137 |
ImportLibrary="<%libout%>\<%libname_prefix%><%sharedname%><%if(use_lib_modifier)%><%lib_modifier%><%endif%><%lib_ext%>"
|
138 |
<%endif%>
|
138 |
<%endif%>
|
139 |
<%endif%>
|
139 |
<%endif%>
|
140 |
TargetMachine="<%machine("1")%>"/>
|
140 |
TargetMachine="<%machine("1")%>"/>
|
141 |
<%endif%>
|
141 |
<%endif%>
|
142 |
<Tool
|
142 |
<Tool
|
143 |
Name="VCMIDLTool"
|
143 |
Name="VCMIDLTool"
|
144 |
AdditionalOptions="<%foreach(midl_defines)%>/D <%midl_define%> <%endfor%><%midl_flags%>"
|
144 |
AdditionalOptions="<%foreach(midl_defines)%>/D <%midl_define%> <%endfor%><%midl_flags%>"
|
145 |
AdditionalIncludeDirectories="<%foreach(midl_includes)%><%midl_include%><%fornotlast(",")%><%endfor%>"
|
145 |
AdditionalIncludeDirectories="<%foreach(midl_includes)%><%midl_include%><%fornotlast(",")%><%endfor%>"
|
146 |
TypeLibraryName="$(InputName).tlb"
|
146 |
TypeLibraryName="$(InputName).tlb"
|
147 |
HeaderFileName="$(InputName).h"
|
147 |
HeaderFileName="$(InputName).h"
|
148 |
InterfaceIdentifierFileName="$(InputName)_i.c"
|
148 |
InterfaceIdentifierFileName="$(InputName)_i.c"
|
149 |
ProxyFileName="$(InputName)_p.c"
|
149 |
ProxyFileName="$(InputName)_p.c"
|
150 |
/>
|
150 |
/>
|
151 |
<Tool
|
151 |
<Tool
|
152 |
Name="VCPostBuildEventTool"
|
152 |
Name="VCPostBuildEventTool"
|
153 |
<%if(postbuild)%>
|
153 |
<%if(postbuild)%>
|
154 |
CommandLine="<%eval(postbuild)%>"
|
154 |
CommandLine="<%eval(postbuild)%>"
|
155 |
<%endif%>
|
155 |
<%endif%>
|
156 |
/>
|
156 |
/>
|
157 |
<Tool
|
157 |
<Tool
|
158 |
Name="VCPreBuildEventTool"/>
|
158 |
Name="VCPreBuildEventTool"/>
|
159 |
<%if(!custom_only)%>
|
159 |
<%if(!custom_only)%>
|
160 |
<Tool
|
160 |
<Tool
|
161 |
Name="VCPreLinkEventTool"/>
|
161 |
Name="VCPreLinkEventTool"/>
|
162 |
<Tool
|
162 |
<Tool
|
163 |
Name="VCResourceCompilerTool"
|
163 |
Name="VCResourceCompilerTool"
|
164 |
PreprocessorDefinitions="<%foreach(defines macros)%><%define%><%fornotlast(";")%><%endfor%>"
|
164 |
PreprocessorDefinitions="<%foreach(defines macros)%><%define%><%fornotlast(";")%><%endfor%>"
|
165 |
Culture="<%culture("1033")%>"
|
165 |
Culture="<%culture("1033")%>"
|
166 |
AdditionalIncludeDirectories="<%foreach(includes)%><%include%><%fornotlast(",")%><%endfor%>"/>
|
166 |
AdditionalIncludeDirectories="<%foreach(includes)%><%include%><%fornotlast(",")%><%endfor%>"/>
|
167 |
<Tool
|
167 |
<Tool
|
168 |
Name="VCWebServiceProxyGeneratorTool"/>
|
168 |
Name="VCWebServiceProxyGeneratorTool"/>
|
169 |
<Tool
|
169 |
<Tool
|
170 |
Name="VCWebDeploymentTool"/>
|
170 |
Name="VCWebDeploymentTool"/>
|
171 |
<%endif%>
|
171 |
<%endif%>
|
172 |
</Configuration>
|
172 |
</Configuration>
|
173 |
<%endfor%>
|
173 |
<%endfor%>
|
174 |
</Configurations>
|
174 |
</Configurations>
|
175 |
<Files>
|
175 |
<Files>
|
176 |
<%if(exename || sharedname || staticname)%>
|
176 |
<%if(exename || sharedname || staticname)%>
|
177 |
<%if(source_files)%>
|
177 |
<%if(source_files)%>
|
178 |
<Filter
|
178 |
<Filter
|
179 |
Name="Source Files"
|
179 |
Name="Source Files"
|
180 |
Filter="cpp;cxx;cc;C;c">
|
180 |
Filter="cpp;cxx;cc;C;c">
|
181 |
<%if(pch_source)%>
|
181 |
<%if(pch_source)%>
|
182 |
<File
|
182 |
<File
|
183 |
RelativePath="<%pch_source%>">
|
183 |
RelativePath="<%pch_source%>">
|
184 |
<%foreach(configurations)%>
|
184 |
<%foreach(configurations)%>
|
185 |
<FileConfiguration
|
185 |
<FileConfiguration
|
186 |
Name="<%configuration%>|<%platform%>">
|
186 |
Name="<%configuration%>|<%platform%>">
|
187 |
<Tool
|
187 |
<Tool
|
188 |
Name="VCCLCompilerTool"
|
188 |
Name="VCCLCompilerTool"
|
189 |
UsePrecompiledHeader="1"/>
|
189 |
UsePrecompiledHeader="1"/>
|
190 |
</FileConfiguration>
|
190 |
</FileConfiguration>
|
191 |
<%endfor%>
|
191 |
<%endfor%>
|
192 |
</File>
|
192 |
</File>
|
193 |
<%endif%>
|
193 |
<%endif%>
|
194 |
<%if(grouped_source_files)%>
|
194 |
<%if(grouped_source_files)%>
|
195 |
<%foreach(grouped_source_files)%>
|
195 |
<%foreach(grouped_source_files)%>
|
196 |
<%if(compares(grouped_source_file, default_group))%>
|
196 |
<%if(compares(grouped_source_file, default_group))%>
|
197 |
<%foreach(grouped_source_file->files)%>
|
197 |
<%foreach(grouped_source_file->files)%>
|
198 |
<File
|
198 |
<File
|
199 |
RelativePath="<%grouped_source_file->file%>">
|
199 |
RelativePath="<%grouped_source_file->file%>">
|
200 |
<%if(duplicate_index(grouped_source_file->file))%>
|
200 |
<%if(duplicate_index(grouped_source_file->file))%>
|
201 |
<%foreach(configurations)%>
|
201 |
<%foreach(configurations)%>
|
202 |
<FileConfiguration
|
202 |
<FileConfiguration
|
203 |
Name="<%configuration%>|<%platform%>">
|
203 |
Name="<%configuration%>|<%platform%>">
|
204 |
<Tool
|
204 |
<Tool
|
205 |
Name="VCCLCompilerTool"
|
205 |
Name="VCCLCompilerTool"
|
206 |
ObjectFile="$(IntDir)\$(InputName)<%duplicate_index(grouped_source_file->file)%>.obj"/>
|
206 |
ObjectFile="$(IntDir)\$(InputName)<%duplicate_index(grouped_source_file->file)%>.obj"/>
|
207 |
</FileConfiguration>
|
207 |
</FileConfiguration>
|
208 |
<%endfor%>
|
208 |
<%endfor%>
|
209 |
<%endif%>
|
209 |
<%endif%>
|
210 |
</File>
|
210 |
</File>
|
211 |
<%endfor%>
|
211 |
<%endfor%>
|
212 |
<%else%>
|
212 |
<%else%>
|
213 |
<Filter
|
213 |
<Filter
|
214 |
Name="<%grouped_source_file%>"
|
214 |
Name="<%grouped_source_file%>"
|
215 |
Filter="">
|
215 |
Filter="">
|
216 |
<%foreach(grouped_source_file->files)%>
|
216 |
<%foreach(grouped_source_file->files)%>
|
217 |
<File
|
217 |
<File
|
218 |
RelativePath="<%grouped_source_file->file%>">
|
218 |
RelativePath="<%grouped_source_file->file%>">
|
219 |
<%if(duplicate_index(grouped_source_file->file))%>
|
219 |
<%if(duplicate_index(grouped_source_file->file))%>
|
220 |
<%foreach(configurations)%>
|
220 |
<%foreach(configurations)%>
|
221 |
<FileConfiguration
|
221 |
<FileConfiguration
|
222 |
Name="<%configuration%>|<%platform%>">
|
222 |
Name="<%configuration%>|<%platform%>">
|
223 |
<Tool
|
223 |
<Tool
|
224 |
Name="VCCLCompilerTool"
|
224 |
Name="VCCLCompilerTool"
|
225 |
ObjectFile="$(IntDir)\$(InputName)<%duplicate_index(grouped_source_file->file)%>.obj"/>
|
225 |
ObjectFile="$(IntDir)\$(InputName)<%duplicate_index(grouped_source_file->file)%>.obj"/>
|
226 |
</FileConfiguration>
|
226 |
</FileConfiguration>
|
227 |
<%endfor%>
|
227 |
<%endfor%>
|
228 |
<%endif%>
|
228 |
<%endif%>
|
229 |
</File>
|
229 |
</File>
|
230 |
<%endfor%>
|
230 |
<%endfor%>
|
231 |
</Filter>
|
231 |
</Filter>
|
232 |
<%endif%>
|
232 |
<%endif%>
|
233 |
<%endfor%>
|
233 |
<%endfor%>
|
234 |
<%else%>
|
234 |
<%else%>
|
235 |
<%foreach(source_files)%>
|
235 |
<%foreach(source_files)%>
|
236 |
<File
|
236 |
<File
|
237 |
RelativePath="<%source_file%>">
|
237 |
RelativePath="<%source_file%>">
|
238 |
<%if(duplicate_index(source_file))%>
|
238 |
<%if(duplicate_index(source_file))%>
|
239 |
<%foreach(configurations)%>
|
239 |
<%foreach(configurations)%>
|
240 |
<FileConfiguration
|
240 |
<FileConfiguration
|
241 |
Name="<%configuration%>|<%platform%>">
|
241 |
Name="<%configuration%>|<%platform%>">
|
242 |
<Tool
|
242 |
<Tool
|
243 |
Name="VCCLCompilerTool"
|
243 |
Name="VCCLCompilerTool"
|
244 |
ObjectFile="$(IntDir)\$(InputName)<%duplicate_index(source_file)%>.obj"/>
|
244 |
ObjectFile="$(IntDir)\$(InputName)<%duplicate_index(source_file)%>.obj"/>
|
245 |
</FileConfiguration>
|
245 |
</FileConfiguration>
|
246 |
<%endfor%>
|
246 |
<%endfor%>
|
247 |
<%endif%>
|
247 |
<%endif%>
|
248 |
</File>
|
248 |
</File>
|
249 |
<%endfor%>
|
249 |
<%endfor%>
|
250 |
<%endif%>
|
250 |
<%endif%>
|
251 |
</Filter>
|
251 |
</Filter>
|
252 |
<%endif%>
|
252 |
<%endif%>
|
253 |
<%endif%>
|
253 |
<%endif%>
|
254 |
<%if(header_files)%>
|
254 |
<%if(header_files)%>
|
255 |
<Filter
|
255 |
<Filter
|
256 |
Name="Header Files"
|
256 |
Name="Header Files"
|
257 |
Filter="h;hpp;hxx;hh">
|
257 |
Filter="h;hpp;hxx;hh">
|
258 |
<%if(pch_header)%>
|
258 |
<%if(pch_header)%>
|
259 |
<File
|
259 |
<File
|
260 |
RelativePath="<%pch_header%>">
|
260 |
RelativePath="<%pch_header%>">
|
261 |
</File>
|
261 |
</File>
|
262 |
<%endif%>
|
262 |
<%endif%>
|
263 |
<%if(grouped_header_files)%>
|
263 |
<%if(grouped_header_files)%>
|
264 |
<%foreach(grouped_header_files)%>
|
264 |
<%foreach(grouped_header_files)%>
|
265 |
<%if(compares(grouped_header_file, default_group))%>
|
265 |
<%if(compares(grouped_header_file, default_group))%>
|
266 |
<%foreach(grouped_header_file->files)%>
|
266 |
<%foreach(grouped_header_file->files)%>
|
267 |
<File
|
267 |
<File
|
268 |
RelativePath="<%grouped_header_file->file%>">
|
268 |
RelativePath="<%grouped_header_file->file%>">
|
269 |
</File>
|
269 |
</File>
|
270 |
<%endfor%>
|
270 |
<%endfor%>
|
271 |
<%else%>
|
271 |
<%else%>
|
272 |
<Filter
|
272 |
<Filter
|
273 |
Name="<%grouped_header_file%>"
|
273 |
Name="<%grouped_header_file%>"
|
274 |
Filter="">
|
274 |
Filter="">
|
275 |
<%foreach(grouped_header_file->files)%>
|
275 |
<%foreach(grouped_header_file->files)%>
|
276 |
<File
|
276 |
<File
|
277 |
RelativePath="<%grouped_header_file->file%>">
|
277 |
RelativePath="<%grouped_header_file->file%>">
|
278 |
</File>
|
278 |
</File>
|
279 |
<%endfor%>
|
279 |
<%endfor%>
|
280 |
</Filter>
|
280 |
</Filter>
|
281 |
<%endif%>
|
281 |
<%endif%>
|
282 |
<%endfor%>
|
282 |
<%endfor%>
|
283 |
<%else%>
|
283 |
<%else%>
|
284 |
<%foreach(header_files)%>
|
284 |
<%foreach(header_files)%>
|
285 |
<File
|
285 |
<File
|
286 |
RelativePath="<%header_file%>">
|
286 |
RelativePath="<%header_file%>">
|
287 |
</File>
|
287 |
</File>
|
288 |
<%endfor%>
|
288 |
<%endfor%>
|
289 |
<%endif%>
|
289 |
<%endif%>
|
290 |
</Filter>
|
290 |
</Filter>
|
291 |
<%endif%>
|
291 |
<%endif%>
|
292 |
<%foreach(custom_types)%>
|
292 |
<%foreach(custom_types)%>
|
293 |
<%if(custom_type->input_files)%>
|
293 |
<%if(custom_type->input_files)%>
|
294 |
<Filter
|
294 |
<Filter
|
295 |
Name="<%ucw(custom_type)%>"
|
295 |
Name="<%ucw(custom_type)%>"
|
296 |
Filter="<%foreach(custom_type->inputexts)%><%custom_type->inputext%><%fornotlast(";")%><%endfor%>">
|
296 |
Filter="<%foreach(custom_type->inputexts)%><%custom_type->inputext%><%fornotlast(";")%><%endfor%>">
|
297 |
<%foreach(custom_type->input_files)%>
|
297 |
<%foreach(custom_type->input_files)%>
|
298 |
<File
|
298 |
<File
|
299 |
RelativePath="<%custom_type->input_file%>">
|
299 |
RelativePath="<%custom_type->input_file%>">
|
300 |
<%foreach(configurations)%>
|
300 |
<%foreach(configurations)%>
|
301 |
<FileConfiguration
|
301 |
<FileConfiguration
|
302 |
Name="<%configuration%>|<%platform%>"
|
302 |
Name="<%configuration%>|<%platform%>"
|
303 |
<%if(!custom_type->input_file->output_files)%>
|
303 |
<%if(!custom_type->input_file->output_files)%>
|
304 |
ExcludedFromBuild="TRUE"
|
304 |
ExcludedFromBuild="TRUE"
|
305 |
<%endif%>
|
305 |
<%endif%>
|
306 |
>
|
306 |
>
|
307 |
<%if(custom_type->input_file->output_files)%>
|
307 |
<%if(custom_type->input_file->output_files)%>
|
308 |
<Tool
|
308 |
<Tool
|
309 |
Name="VCCustomBuildTool"
|
309 |
Name="VCCustomBuildTool"
|
310 |
Description="Invoking <%if(flag_overrides(custom_type->input_file, command))%><%flag_overrides(custom_type->input_file, command)%><%else%><%custom_type->command%><%endif%> on <%custom_type->input_file%>"
|
310 |
Description="Invoking <%if(flag_overrides(custom_type->input_file, command))%><%flag_overrides(custom_type->input_file, command)%><%else%><%custom_type->command%><%endif%> on <%custom_type->input_file%>"
|
311 |
CommandLine="<%if(custom_type->libpath)%>PATH=%PATH%;<%custom_type->libpath%>
<%endif%><%if(flag_overrides(custom_type->input_file, gendir))%>if not exist <%flag_overrides(custom_type->input_file, gendir)%> mkdir <%flag_overrides(custom_type->input_file, gendir)%>
<%endif%><%if(flag_overrides(custom_type->input_file, command))%><%flag_overrides(custom_type->input_file, command)%><%else%><%custom_type->command%><%endif%> <%if(flag_overrides(custom_type->input_file, commandflags))%><%flag_overrides(custom_type->input_file, commandflags)%><%else%><%custom_type->commandflags%><%endif%><%if(custom_type->output_option)%> <%custom_type->output_option%><%foreach(custom_type->input_file->output_files)%> "<%if(flag_overrides(custom_type->input_file, gendir))%><%flag_overrides(custom_type->input_file, gendir)%>\<%basename(custom_type->input_file->output_file)%><%else%><%custom_type->input_file->output_file%><%endif%>"<%endfor%><%endif%> "<%custom_type->input_file%>"<%if(flag_overrides(custom_type->input_file, postcommand))%><%foreach(custom_type->input_file)%>
<%flag_overrides(custom_type->input_file, postcommand)%><%endfor%><%else%><%if(custom_type->postcommand)%><%foreach(custom_type->input_file)%>
<%custom_type->postcommand%><%endfor%><%endif%><%endif%><%if(pch_header)%><%if(custom_type->pch_postrule)%><%foreach(custom_type->input_file->source_output_files)%>
echo #include "<%pch_header%>" > temporary.src
type "<%if(flag_overrides(custom_type->input_file, gendir))%><%flag_overrides(custom_type->input_file, gendir)%>\<%basename(custom_type->input_file->source_output_file)%><%else%><%custom_type->input_file->source_output_file%><%endif%>" >> temporary.src
move /y temporary.src "<%if(flag_overrides(custom_type->input_file, gendir))%><%flag_overrides(custom_type->input_file, gendir)%>\<%basename(custom_type->input_file->source_output_file)%><%else%><%custom_type->input_file->source_output_file%><%endif%>"<%endfor%><%endif%><%endif%>"
|
311 |
CommandLine="<%if(custom_type->libpath)%>PATH=%PATH%;<%custom_type->libpath%>
<%endif%><%if(flag_overrides(custom_type->input_file, gendir))%>if not exist <%flag_overrides(custom_type->input_file, gendir)%> mkdir <%flag_overrides(custom_type->input_file, gendir)%>
<%endif%><%if(flag_overrides(custom_type->input_file, command))%><%flag_overrides(custom_type->input_file, command)%><%else%><%custom_type->command%><%endif%> <%if(flag_overrides(custom_type->input_file, commandflags))%><%flag_overrides(custom_type->input_file, commandflags)%><%else%><%custom_type->commandflags%><%endif%><%if(custom_type->output_option)%> <%custom_type->output_option%><%foreach(custom_type->input_file->output_files)%> "<%if(flag_overrides(custom_type->input_file, gendir))%><%flag_overrides(custom_type->input_file, gendir)%>\<%basename(custom_type->input_file->output_file)%><%else%><%custom_type->input_file->output_file%><%endif%>"<%endfor%><%endif%> "<%custom_type->input_file%>"<%if(flag_overrides(custom_type->input_file, postcommand))%><%foreach(custom_type->input_file)%>
<%flag_overrides(custom_type->input_file, postcommand)%><%endfor%><%else%><%if(custom_type->postcommand)%><%foreach(custom_type->input_file)%>
<%custom_type->postcommand%><%endfor%><%endif%><%endif%><%if(pch_header)%><%if(custom_type->pch_postrule)%><%foreach(custom_type->input_file->source_output_files)%>
echo #include "<%pch_header%>" > temporary.src
type "<%if(flag_overrides(custom_type->input_file, gendir))%><%flag_overrides(custom_type->input_file, gendir)%>\<%basename(custom_type->input_file->source_output_file)%><%else%><%custom_type->input_file->source_output_file%><%endif%>" >> temporary.src
move /y temporary.src "<%if(flag_overrides(custom_type->input_file, gendir))%><%flag_overrides(custom_type->input_file, gendir)%>\<%basename(custom_type->input_file->source_output_file)%><%else%><%custom_type->input_file->source_output_file%><%endif%>"<%endfor%><%endif%><%endif%>"
|
312 |
<%if(flag_overrides(custom_type->input_file, dependent))%>
|
312 |
<%if(flag_overrides(custom_type->input_file, dependent))%>
|
313 |
AdditionalDependencies="<%foreach(dep, flag_overrides(custom_type->input_file, dependent))%><%dep%><%if(!ends_with(dep, \.p.))%><%exe_ext%><%endif%><%fornotlast(";")%><%endfor%><%foreach(custom_type->input_file->dependencies)%>;<%custom_type->input_file->dependencie%><%endfor%>"
|
313 |
AdditionalDependencies="<%foreach(dep, flag_overrides(custom_type->input_file, dependent))%><%dep%><%if(!ends_with(dep, \.p.))%><%exe_ext%><%endif%><%fornotlast(";")%><%endfor%><%foreach(custom_type->input_file->dependencies)%>;<%custom_type->input_file->dependencie%><%endfor%>"
|
314 |
<%else%>
|
314 |
<%else%>
|
315 |
<%if(custom_type->dependent)%>
|
315 |
<%if(custom_type->dependent)%>
|
316 |
AdditionalDependencies="<%foreach(custom_type->dependent)%><%custom_type->dependent%><%if(!ends_with(custom_type->dependent, \.p.))%><%exe_ext%><%endif%><%fornotlast(";")%><%endfor%><%foreach(custom_type->input_file->dependencies)%>;<%custom_type->input_file->dependencie%><%endfor%>"
|
316 |
AdditionalDependencies="<%foreach(custom_type->dependent)%><%custom_type->dependent%><%if(!ends_with(custom_type->dependent, \.p.))%><%exe_ext%><%endif%><%fornotlast(";")%><%endfor%><%foreach(custom_type->input_file->dependencies)%>;<%custom_type->input_file->dependencie%><%endfor%>"
|
317 |
<%else%>
|
317 |
<%else%>
|
318 |
<%if(custom_type->input_file->dependencies)%>
|
318 |
<%if(custom_type->input_file->dependencies)%>
|
319 |
AdditionalDependencies="<%foreach(custom_type->input_file->dependencies)%><%custom_type->input_file->dependencie%><%fornotlast(";")%><%endfor%>"
|
319 |
AdditionalDependencies="<%foreach(custom_type->input_file->dependencies)%><%custom_type->input_file->dependencie%><%fornotlast(";")%><%endfor%>"
|
320 |
<%endif%>
|
320 |
<%endif%>
|
321 |
<%endif%>
|
321 |
<%endif%>
|
322 |
<%endif%>
|
322 |
<%endif%>
|
323 |
Outputs="<%foreach(custom_type->input_file->output_files)%><%if(flag_overrides(custom_type->input_file, gendir))%><%flag_overrides(custom_type->input_file, gendir)%>\<%basename(custom_type->input_file->output_file)%><%else%><%custom_type->input_file->output_file%><%endif%><%fornotlast(";")%><%endfor%>"/>
|
323 |
Outputs="<%foreach(custom_type->input_file->output_files)%><%if(flag_overrides(custom_type->input_file, gendir))%><%flag_overrides(custom_type->input_file, gendir)%>\<%basename(custom_type->input_file->output_file)%><%else%><%custom_type->input_file->output_file%><%endif%><%fornotlast(";")%><%endfor%>"/>
|
324 |
<%endif%>
|
324 |
<%endif%>
|
325 |
</FileConfiguration>
|
325 |
</FileConfiguration>
|
326 |
<%endfor%>
|
326 |
<%endfor%>
|
327 |
</File>
|
327 |
</File>
|
328 |
<%endfor%>
|
328 |
<%endfor%>
|
329 |
</Filter>
|
329 |
</Filter>
|
330 |
<%endif%>
|
330 |
<%endif%>
|
331 |
<%endfor%>
|
331 |
<%endfor%>
|
332 |
<%if(inline_files)%>
|
332 |
<%if(inline_files)%>
|
333 |
<Filter
|
333 |
<Filter
|
334 |
Name="Inline Files"
|
334 |
Name="Inline Files"
|
335 |
Filter="i;inl">
|
335 |
Filter="i;inl">
|
336 |
<%if(grouped_inline_files)%>
|
336 |
<%if(grouped_inline_files)%>
|
337 |
<%foreach(grouped_inline_files)%>
|
337 |
<%foreach(grouped_inline_files)%>
|
338 |
<%if(compares(grouped_inline_file, default_group))%>
|
338 |
<%if(compares(grouped_inline_file, default_group))%>
|
339 |
<%foreach(grouped_inline_file->files)%>
|
339 |
<%foreach(grouped_inline_file->files)%>
|
340 |
<File
|
340 |
<File
|
341 |
RelativePath="<%grouped_inline_file->file%>">
|
341 |
RelativePath="<%grouped_inline_file->file%>">
|
342 |
</File>
|
342 |
</File>
|
343 |
<%endfor%>
|
343 |
<%endfor%>
|
344 |
<%else%>
|
344 |
<%else%>
|
345 |
<Filter
|
345 |
<Filter
|
346 |
Name="<%grouped_inline_file%>"
|
346 |
Name="<%grouped_inline_file%>"
|
347 |
Filter="">
|
347 |
Filter="">
|
348 |
<%foreach(grouped_inline_file->files)%>
|
348 |
<%foreach(grouped_inline_file->files)%>
|
349 |
<File
|
349 |
<File
|
350 |
RelativePath="<%grouped_inline_file->file%>">
|
350 |
RelativePath="<%grouped_inline_file->file%>">
|
351 |
</File>
|
351 |
</File>
|
352 |
<%endfor%>
|
352 |
<%endfor%>
|
353 |
</Filter>
|
353 |
</Filter>
|
354 |
<%endif%>
|
354 |
<%endif%>
|
355 |
<%endfor%>
|
355 |
<%endfor%>
|
356 |
<%else%>
|
356 |
<%else%>
|
357 |
<%foreach(inline_files)%>
|
357 |
<%foreach(inline_files)%>
|
358 |
<File
|
358 |
<File
|
359 |
RelativePath="<%inline_file%>">
|
359 |
RelativePath="<%inline_file%>">
|
360 |
</File>
|
360 |
</File>
|
361 |
<%endfor%>
|
361 |
<%endfor%>
|
362 |
<%endif%>
|
362 |
<%endif%>
|
363 |
</Filter>
|
363 |
</Filter>
|
364 |
<%endif%>
|
364 |
<%endif%>
|
365 |
<%if(template_files)%>
|
365 |
<%if(template_files)%>
|
366 |
<Filter
|
366 |
<Filter
|
367 |
Name="Template Files"
|
367 |
Name="Template Files"
|
368 |
Filter="">
|
368 |
Filter="">
|
369 |
<%if(grouped_template_files)%>
|
369 |
<%if(grouped_template_files)%>
|
370 |
<%foreach(grouped_template_files)%>
|
370 |
<%foreach(grouped_template_files)%>
|
371 |
<%if(compares(grouped_template_file, default_group))%>
|
371 |
<%if(compares(grouped_template_file, default_group))%>
|
372 |
<%foreach(grouped_template_file->files)%>
|
372 |
<%foreach(grouped_template_file->files)%>
|
373 |
<File
|
373 |
<File
|
374 |
RelativePath="<%grouped_template_file->file%>">
|
374 |
RelativePath="<%grouped_template_file->file%>">
|
375 |
<%foreach(configurations)%>
|
375 |
<%foreach(configurations)%>
|
376 |
<FileConfiguration
|
376 |
<FileConfiguration
|
377 |
Name="<%configuration%>|<%platform%>"
|
377 |
Name="<%configuration%>|<%platform%>"
|
378 |
ExcludedFromBuild="TRUE">
|
378 |
ExcludedFromBuild="TRUE">
|
379 |
<Tool
|
379 |
<Tool
|
380 |
Name="VCCLCompilerTool"/>
|
380 |
Name="VCCLCompilerTool"/>
|
381 |
</FileConfiguration>
|
381 |
</FileConfiguration>
|
382 |
<%endfor%>
|
382 |
<%endfor%>
|
383 |
</File>
|
383 |
</File>
|
384 |
<%endfor%>
|
384 |
<%endfor%>
|
385 |
<%else%>
|
385 |
<%else%>
|
386 |
<Filter
|
386 |
<Filter
|
387 |
Name="<%grouped_template_file%>"
|
387 |
Name="<%grouped_template_file%>"
|
388 |
Filter="">
|
388 |
Filter="">
|
389 |
<%foreach(grouped_template_file->files)%>
|
389 |
<%foreach(grouped_template_file->files)%>
|
390 |
<File
|
390 |
<File
|
391 |
RelativePath="<%grouped_template_file->file%>">
|
391 |
RelativePath="<%grouped_template_file->file%>">
|
392 |
<%foreach(configurations)%>
|
392 |
<%foreach(configurations)%>
|
393 |
<FileConfiguration
|
393 |
<FileConfiguration
|
394 |
Name="<%configuration%>|<%platform%>"
|
394 |
Name="<%configuration%>|<%platform%>"
|
395 |
ExcludedFromBuild="TRUE">
|
395 |
ExcludedFromBuild="TRUE">
|
396 |
<Tool
|
396 |
<Tool
|
397 |
Name="VCCLCompilerTool"/>
|
397 |
Name="VCCLCompilerTool"/>
|
398 |
</FileConfiguration>
|
398 |
</FileConfiguration>
|
399 |
<%endfor%>
|
399 |
<%endfor%>
|
400 |
</File>
|
400 |
</File>
|
401 |
<%endfor%>
|
401 |
<%endfor%>
|
402 |
</Filter>
|
402 |
</Filter>
|
403 |
<%endif%>
|
403 |
<%endif%>
|
404 |
<%endfor%>
|
404 |
<%endfor%>
|
405 |
<%else%>
|
405 |
<%else%>
|
406 |
<%foreach(template_files)%>
|
406 |
<%foreach(template_files)%>
|
407 |
<File
|
407 |
<File
|
408 |
RelativePath="<%template_file%>">
|
408 |
RelativePath="<%template_file%>">
|
409 |
<%foreach(configurations)%>
|
409 |
<%foreach(configurations)%>
|
410 |
<FileConfiguration
|
410 |
<FileConfiguration
|
411 |
Name="<%configuration%>|<%platform%>"
|
411 |
Name="<%configuration%>|<%platform%>"
|
412 |
ExcludedFromBuild="TRUE">
|
412 |
ExcludedFromBuild="TRUE">
|
413 |
<Tool
|
413 |
<Tool
|
414 |
Name="VCCLCompilerTool"/>
|
414 |
Name="VCCLCompilerTool"/>
|
415 |
</FileConfiguration>
|
415 |
</FileConfiguration>
|
416 |
<%endfor%>
|
416 |
<%endfor%>
|
417 |
</File>
|
417 |
</File>
|
418 |
<%endfor%>
|
418 |
<%endfor%>
|
419 |
<%endif%>
|
419 |
<%endif%>
|
420 |
</Filter>
|
420 |
</Filter>
|
421 |
<%endif%>
|
421 |
<%endif%>
|
422 |
<%if(documentation_files)%>
|
422 |
<%if(documentation_files)%>
|
423 |
<Filter
|
423 |
<Filter
|
424 |
Name="Documentation"
|
424 |
Name="Documentation"
|
425 |
Filter="">
|
425 |
Filter="">
|
426 |
<%if(grouped_documentation_files)%>
|
426 |
<%if(grouped_documentation_files)%>
|
427 |
<%foreach(grouped_documentation_files)%>
|
427 |
<%foreach(grouped_documentation_files)%>
|
428 |
<%if(compares(grouped_documentation_file, default_group))%>
|
428 |
<%if(compares(grouped_documentation_file, default_group))%>
|
429 |
<%foreach(grouped_documentation_file->files)%>
|
429 |
<%foreach(grouped_documentation_file->files)%>
|
430 |
<File
|
430 |
<File
|
431 |
RelativePath="<%grouped_documentation_file->file%>">
|
431 |
RelativePath="<%grouped_documentation_file->file%>">
|
432 |
<%foreach(configurations)%>
|
432 |
<%foreach(configurations)%>
|
433 |
<FileConfiguration
|
433 |
<FileConfiguration
|
434 |
Name="<%configuration%>|<%platform%>"
|
434 |
Name="<%configuration%>|<%platform%>"
|
435 |
ExcludedFromBuild="TRUE">
|
435 |
ExcludedFromBuild="TRUE">
|
436 |
<Tool
|
436 |
<Tool
|
437 |
Name="VCCustomBuildTool"/>
|
437 |
Name="VCCustomBuildTool"/>
|
438 |
</FileConfiguration>
|
438 |
</FileConfiguration>
|
439 |
<%endfor%>
|
439 |
<%endfor%>
|
440 |
</File>
|
440 |
</File>
|
441 |
<%endfor%>
|
441 |
<%endfor%>
|
442 |
<%else%>
|
442 |
<%else%>
|
443 |
<Filter
|
443 |
<Filter
|
444 |
Name="<%grouped_documentation_file%>"
|
444 |
Name="<%grouped_documentation_file%>"
|
445 |
Filter="">
|
445 |
Filter="">
|
446 |
<%foreach(grouped_documentation_file->files)%>
|
446 |
<%foreach(grouped_documentation_file->files)%>
|
447 |
<File
|
447 |
<File
|
448 |
RelativePath="<%grouped_documentation_file->file%>">
|
448 |
RelativePath="<%grouped_documentation_file->file%>">
|
449 |
<%foreach(configurations)%>
|
449 |
<%foreach(configurations)%>
|
450 |
<FileConfiguration
|
450 |
<FileConfiguration
|
451 |
Name="<%configuration%>|<%platform%>"
|
451 |
Name="<%configuration%>|<%platform%>"
|
452 |
ExcludedFromBuild="TRUE">
|
452 |
ExcludedFromBuild="TRUE">
|
453 |
<Tool
|
453 |
<Tool
|
454 |
Name="VCCustomBuildTool"/>
|
454 |
Name="VCCustomBuildTool"/>
|
455 |
</FileConfiguration>
|
455 |
</FileConfiguration>
|
456 |
<%endfor%>
|
456 |
<%endfor%>
|
457 |
</File>
|
457 |
</File>
|
458 |
<%endfor%>
|
458 |
<%endfor%>
|
459 |
</Filter>
|
459 |
</Filter>
|
460 |
<%endif%>
|
460 |
<%endif%>
|
461 |
<%endfor%>
|
461 |
<%endfor%>
|
462 |
<%else%>
|
462 |
<%else%>
|
463 |
<%foreach(documentation_files)%>
|
463 |
<%foreach(documentation_files)%>
|
464 |
<File
|
464 |
<File
|
465 |
RelativePath="<%documentation_file%>">
|
465 |
RelativePath="<%documentation_file%>">
|
466 |
<%foreach(configurations)%>
|
466 |
<%foreach(configurations)%>
|
467 |
<FileConfiguration
|
467 |
<FileConfiguration
|
468 |
Name="<%configuration%>|<%platform%>"
|
468 |
Name="<%configuration%>|<%platform%>"
|
469 |
ExcludedFromBuild="TRUE">
|
469 |
ExcludedFromBuild="TRUE">
|
470 |
<Tool
|
470 |
<Tool
|
471 |
Name="VCCustomBuildTool"/>
|
471 |
Name="VCCustomBuildTool"/>
|
472 |
</FileConfiguration>
|
472 |
</FileConfiguration>
|
473 |
<%endfor%>
|
473 |
<%endfor%>
|
474 |
</File>
|
474 |
</File>
|
475 |
<%endfor%>
|
475 |
<%endfor%>
|
476 |
<%endif%>
|
476 |
<%endif%>
|
477 |
</Filter>
|
477 |
</Filter>
|
478 |
<%endif%>
|
478 |
<%endif%>
|
479 |
<%if(resource_files && !type_is_static)%>
|
479 |
<%if(resource_files && !type_is_static)%>
|
480 |
<Filter
|
480 |
<Filter
|
481 |
Name="Resource Files"
|
481 |
Name="Resource Files"
|
482 |
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;cnt;rtf;gif;jpg;jpeg;jpe">
|
482 |
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;cnt;rtf;gif;jpg;jpeg;jpe">
|
483 |
<%if(grouped_resource_files)%>
|
483 |
<%if(grouped_resource_files)%>
|
484 |
<%foreach(grouped_resource_files)%>
|
484 |
<%foreach(grouped_resource_files)%>
|
485 |
<%if(compares(grouped_resource_file, default_group))%>
|
485 |
<%if(compares(grouped_resource_file, default_group))%>
|
486 |
<%foreach(grouped_resource_file->files)%>
|
486 |
<%foreach(grouped_resource_file->files)%>
|
487 |
<File
|
487 |
<File
|
488 |
RelativePath="<%grouped_resource_file->file%>">
|
488 |
RelativePath="<%grouped_resource_file->file%>">
|
489 |
</File>
|
489 |
</File>
|
490 |
<%endfor%>
|
490 |
<%endfor%>
|
491 |
<%else%>
|
491 |
<%else%>
|
492 |
<Filter
|
492 |
<Filter
|
493 |
Name="<%grouped_resource_file%>"
|
493 |
Name="<%grouped_resource_file%>"
|
494 |
Filter="">
|
494 |
Filter="">
|
495 |
<%foreach(grouped_resource_file->files)%>
|
495 |
<%foreach(grouped_resource_file->files)%>
|
496 |
<File
|
496 |
<File
|
497 |
RelativePath="<%grouped_resource_file->file%>">
|
497 |
RelativePath="<%grouped_resource_file->file%>">
|
498 |
</File>
|
498 |
</File>
|
499 |
<%endfor%>
|
499 |
<%endfor%>
|
500 |
</Filter>
|
500 |
</Filter>
|
501 |
<%endif%>
|
501 |
<%endif%>
|
502 |
<%endfor%>
|
502 |
<%endfor%>
|
503 |
<%else%>
|
503 |
<%else%>
|
504 |
<%foreach(resource_files)%>
|
504 |
<%foreach(resource_files)%>
|
505 |
<File
|
505 |
<File
|
506 |
RelativePath="<%resource_file%>">
|
506 |
RelativePath="<%resource_file%>">
|
507 |
</File>
|
507 |
</File>
|
508 |
<%endfor%>
|
508 |
<%endfor%>
|
509 |
<%endif%>
|
509 |
<%endif%>
|
510 |
</Filter>
|
510 |
</Filter>
|
511 |
<%endif%>
|
511 |
<%endif%>
|
512 |
</Files>
|
512 |
</Files>
|
513 |
<Globals>
|
513 |
<Globals>
|
514 |
</Globals>
|
514 |
</Globals>
|
515 |
</VisualStudioProject>
|
515 |
</VisualStudioProject>
|
516 |
|
516 |
|