OLD | NEW |
---|---|
(Empty) | |
1 <Rule | |
2 Name="ConfigurationGeneral" | |
3 DisplayName="General" | |
4 PageTemplate="generic" | |
5 Description="General" | |
6 xmlns="http://schemas.microsoft.com/build/2009/properties"> | |
7 <Rule.Categories> | |
8 <Category Name="ProjectDefaults" DisplayName="Project Defaults" Description= "Project Defaults" /> | |
9 <PatchAdd> | |
10 <Category Name="NativeClient" DisplayName="Native Client" Description="Nat ive Client General Properties" /> | |
11 </PatchAdd> | |
12 </Rule.Categories> | |
13 <Rule.DataSource> | |
14 <DataSource Persistence="ProjectFile" Label="Configuration" /> | |
15 </Rule.DataSource> | |
16 | |
17 <!-- Add VS NaCl SDK Root. Note the default value is actually set in Microsof t.cpp.PPAPI.default.props.patch --> | |
18 <PatchAdd> | |
19 <StringProperty Name="VSNaClSDKRoot" DisplayName="NaCl SDK Root" | |
binji
2012/07/24 22:13:08
seems weird to call it VSNaClSDKRoot... what does
tysand
2012/07/24 23:19:49
This variable refers to the visual studio project'
| |
20 Description="Specifies the path to the Native Client SDK root directory" | |
21 Category="NativeClient" Default="" | |
22 Subtype="folder" F1Keyword="VC.Project.VCConfiguration.NaClSDK Root"> | |
23 <StringProperty.DataSource> | |
24 <DataSource Persistence="ProjectFile" Label="" /> | |
25 </StringProperty.DataSource> | |
26 </StringProperty> | |
27 </PatchAdd> | |
28 | |
29 <EnumProperty Name="ConfigurationType" DisplayName="Configuration Type" | |
30 Description="Specifies the type of output this configuration gen erates." | |
31 Category="ProjectDefaults" | |
32 F1Keyword="VC.Project.VCConfiguration.ConfigurationType"> | |
33 <PatchRemove> | |
34 <EnumValue Name="Makefile" DisplayName="Makefile" Description="Makefile" / > | |
35 <EnumValue Name="Application" DisplayName="Application (.exe)" Description ="Application (.exe)" /> | |
36 <EnumValue Name="DynamicLibrary" DisplayName="Dynamic Library (.dll)" Desc ription="Dynamic Library (.dll)" /> | |
37 <EnumValue Name="StaticLibrary" DisplayName="Static library (.lib)" Descri ption="Static Library (.lib)" /> | |
38 <EnumValue Name="Utility" DisplayName="Utility" Description="Utility" /> | |
39 </PatchRemove> | |
40 <PatchAdd> | |
41 <EnumValue Name="DynamicLibrary" DisplayName="Dynamic Library (.dll)" Desc ription="Dynamic Library (.dll)" /> | |
42 <EnumValue Name="StaticLibrary" DisplayName="Static library (.lib)" Descri ption="Static Library (.lib)" /> | |
43 </PatchAdd> | |
44 </EnumProperty> | |
45 </Rule> | |
OLD | NEW |