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

Side by Side Diff: visual_studio/NativeClientVSAddIn/InstallerResources/NaCl/Microsoft.Cpp.NaCl.props

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 xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3 <Import Project="$(VCTargetsPath)\Platforms\NaCl\ImportBefore\*.props" Conditi on="Exists('$(VCTargetsPath)\Platforms\NaCl\ImportBefore')" />
4 <Import Condition="(exists('$(VCTargetsPath)\Platforms\NaCl\PlatformToolsets\$ (PlatformToolset)\Microsoft.Cpp.NaCl.$(PlatformToolset).props'))" Project="$(VCT argetsPath)\Platforms\NaCl\PlatformToolsets\$(PlatformToolset)\Microsoft.Cpp.NaC l.$(PlatformToolset).props"/>
5
6 <PropertyGroup>
7 <DebuggerFlavor Condition="'$(DebuggerFlavor)'==''">WindowsLocalDebugger</De buggerFlavor>
8 </PropertyGroup>
9
10 <Import Project="$(VCTargetsPath)\Platforms\NaCl\NaCl.Toolset.default.props" / >
11
12 <PropertyGroup>
13 <IgnoreImportLibrary>true</IgnoreImportLibrary>
14 <GenerateManifest>false</GenerateManifest>
15 </PropertyGroup>
16
17 <PropertyGroup Condition="'$(ConfigurationType)' == 'Application'">
18 <LinkCompiled>true</LinkCompiled>
19 <TargetExt>.nexe</TargetExt>
20 </PropertyGroup>
21
22 <PropertyGroup Condition="'$(ConfigurationType)' == 'DynamicLibrary'">
23 <LinkCompiled>true</LinkCompiled>
24 <TargetExt>.so</TargetExt>
25 </PropertyGroup>
26
27 <PropertyGroup Condition="'$(ConfigurationType)' == 'StaticLibrary'">
28 <LibCompiled>true</LibCompiled>
29 <TargetExt>.a</TargetExt>
30 </PropertyGroup>
31
32 <Import Project="$(VCTargetsPath)\Platforms\NaCl\NaCl.Paths.default.props" />
33 <Import Project="$(VCTargetsPath)\Platforms\NaCl\ImportAfter\*.props" Conditio n="Exists('$(VCTargetsPath)\Platforms\NaCl\ImportAfter')" />
34 </Project>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698