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

Unified 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, 5 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 side-by-side diff with in-line comments
Download patch
Index: visual_studio/NativeClientVSAddIn/InstallerResources/NaCl/Microsoft.Cpp.NaCl.props
diff --git a/visual_studio/NativeClientVSAddIn/InstallerResources/NaCl/Microsoft.Cpp.NaCl.props b/visual_studio/NativeClientVSAddIn/InstallerResources/NaCl/Microsoft.Cpp.NaCl.props
new file mode 100644
index 0000000000000000000000000000000000000000..f1068a969f2aeedb9c9c4a0efe84e4f9658ae9d3
--- /dev/null
+++ b/visual_studio/NativeClientVSAddIn/InstallerResources/NaCl/Microsoft.Cpp.NaCl.props
@@ -0,0 +1,34 @@
+
+<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <Import Project="$(VCTargetsPath)\Platforms\NaCl\ImportBefore\*.props" Condition="Exists('$(VCTargetsPath)\Platforms\NaCl\ImportBefore')" />
+ <Import Condition="(exists('$(VCTargetsPath)\Platforms\NaCl\PlatformToolsets\$(PlatformToolset)\Microsoft.Cpp.NaCl.$(PlatformToolset).props'))" Project="$(VCTargetsPath)\Platforms\NaCl\PlatformToolsets\$(PlatformToolset)\Microsoft.Cpp.NaCl.$(PlatformToolset).props"/>
+
+ <PropertyGroup>
+ <DebuggerFlavor Condition="'$(DebuggerFlavor)'==''">WindowsLocalDebugger</DebuggerFlavor>
+ </PropertyGroup>
+
+ <Import Project="$(VCTargetsPath)\Platforms\NaCl\NaCl.Toolset.default.props" />
+
+ <PropertyGroup>
+ <IgnoreImportLibrary>true</IgnoreImportLibrary>
+ <GenerateManifest>false</GenerateManifest>
+ </PropertyGroup>
+
+ <PropertyGroup Condition="'$(ConfigurationType)' == 'Application'">
+ <LinkCompiled>true</LinkCompiled>
+ <TargetExt>.nexe</TargetExt>
+ </PropertyGroup>
+
+ <PropertyGroup Condition="'$(ConfigurationType)' == 'DynamicLibrary'">
+ <LinkCompiled>true</LinkCompiled>
+ <TargetExt>.so</TargetExt>
+ </PropertyGroup>
+
+ <PropertyGroup Condition="'$(ConfigurationType)' == 'StaticLibrary'">
+ <LibCompiled>true</LibCompiled>
+ <TargetExt>.a</TargetExt>
+ </PropertyGroup>
+
+ <Import Project="$(VCTargetsPath)\Platforms\NaCl\NaCl.Paths.default.props" />
+ <Import Project="$(VCTargetsPath)\Platforms\NaCl\ImportAfter\*.props" Condition="Exists('$(VCTargetsPath)\Platforms\NaCl\ImportAfter')" />
+</Project>

Powered by Google App Engine
This is Rietveld 408576698