Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(198)

Side by Side Diff: visual_studio/NativeClientVSAddIn/InstallerResources/NaCl/NaCl.CppBuild.targets

Issue 10831030: NaCl settings and completed install scripts. (Closed) Base URL: https://nativeclient-sdk.googlecode.com/svn/trunk/src
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1
2 <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuil d/2003">
3
4 <PropertyGroup>
5 <UseDefaultProjectTools>false</UseDefaultProjectTools>
6 <UseDefaultPropertyPageSchemas>false</UseDefaultPropertyPageSchemas>
7 <UseDefaultGeneralPropertyPageSchema>false</UseDefaultGeneralPropertyPageSch ema>
8 </PropertyGroup>
9
10 <!-- Property pages -->
11
12 <ItemGroup>
13 <!-- Property pages that always apply -->
14 <PropertyPageSchema Include="
15 $(VCTargetsPath)\Platforms\NaCl\Properties\nacl_projectItemsSchema.xml;
16 $(VCTargetsPath)$(LangID)\debugger_*.xml;
17 $(VCTargetsPath)$(LangID)\midl.xml;
18 $(VCTargetsPath)$(LangID)\build_events.xml;
19 $(VCTargetsPath)$(LangID)\custom_build_tool.xml;
20 "
21 Exclude="
22 $(VCTargetsPath)$(LangID)\debugger_smartdevice_native.xml;
23 "/>
24
25 <!-- Make sure the following debugger schemas are explicitly included, to al low CPS to search for them
26 in the alternative locations. To avoid duplicate schemas, we don't incl ude them
27 if they already exist in $(VCTargetsPath)$(LangID)\debugger_*.xml -->
28 <PropertyPageSchema Condition="!Exists('$(VCTargetsPath)$(LangID)\debugger_g eneral.xml')" Include="$(VCTargetsPath)$(LangID)\debugger_general.xml" />
29 <PropertyPageSchema Condition="!Exists('$(VCTargetsPath)$(LangID)\debugger_l ocal_windows.xml')" Include="$(VCTargetsPath)$(LangID)\debugger_local_windows.xm l" />
30 <PropertyPageSchema Condition="!Exists('$(VCTargetsPath)$(LangID)\debugger_m pi_cluster.xml')" Include="$(VCTargetsPath)$(LangID)\debugger_mpi_cluster.xml" / >
31 <PropertyPageSchema Condition="!Exists('$(VCTargetsPath)$(LangID)\debugger_r emote_windows.xml')" Include="$(VCTargetsPath)$(LangID)\debugger_remote_windows. xml" />
32 <PropertyPageSchema Condition="!Exists('$(VCTargetsPath)$(LangID)\debugger_w eb_browser.xml')" Include="$(VCTargetsPath)$(LangID)\debugger_web_browser.xml" / >
33 <PropertyPageSchema Condition="!Exists('$(VCTargetsPath)$(LangID)\debugger_w eb_service.xml')" Include="$(VCTargetsPath)$(LangID)\debugger_web_service.xml" / >
34
35 <!-- Property sheet specific property pages -->
36 <PropertyPageSchema Include="$(VCTargetsPath)$(LangID)\usermacros.xml">
37 <Context>PropertySheet</Context>
38 </PropertyPageSchema>
39
40 <!-- Switch view between project property based directories and environment variables -->
41 <PropertyPageSchema Include="$(VCTargetsPath)\Platforms\NaCl\Properties\nacl _directories.xml" />
42
43 <!-- Non-Utility project property pages -->
44 <PropertyPageSchema Condition="'$(ConfigurationType)' != 'Utility'" Include= "
45 $(VCTargetsPath)\Platforms\NaCl\Properties\nacl_compile.xml;
46 $(VCTargetsPath)$(LangID)\custom_build_step.xml;
47 "/>
48 <PropertyPageSchema Include="$(VCTargetsPath)\Platforms\NaCl\Properties\nacl _link.xml" Condition="'$(ConfigurationType)' == 'Application' or '$(Configuratio nType)' == 'DynamicLibrary'" />
49 <PropertyPageSchema Include="$(VCTargetsPath)\Platforms\NaCl\Properties\nacl _lib.xml" Condition="'$(ConfigurationType)' == 'StaticLibrary'" />
50 </ItemGroup>
51
52 <ItemGroup>
53 <PropertyPageSchema Include="$(VCTargetsPath)\Platforms\NaCl\Properties\nacl _general.xml">
54 <Context>Project</Context>
55 </PropertyPageSchema>
56 <PropertyPageSchema Include="$(VCTargetsPath)\Platforms\NaCl\Properties\nacl _general_ps.xml">
57 <Context>PropertySheet</Context>
58 </PropertyPageSchema>
59 </ItemGroup>
60
61 <!-- Tools that show up in the IDE property pages for exe and dll projects -->
62 <ItemGroup Condition="('$(ConfigurationType)' == 'Application' or '$(Configura tionType)' == 'DynamicLibrary')">
63 <ProjectTools Include="Link"/>
64 <ProjectTools Include="CustomBuildStep"/>
65 </ItemGroup>
66
67 <!-- Tools that show up in the IDE property pages for lib project-->
68 <ItemGroup Condition="'$(ConfigurationType)' == 'StaticLibrary'">
69 <ProjectTools Include="Lib"/>
70 <ProjectTools Include="CustomBuildStep"/>
71 </ItemGroup>
72
73 </Project>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698