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

Side by Side Diff: experimental/visual_studio_plugin/src/NaClVsx.Package/Templates/Projects/Console Projects/NaClNexe.naclproj

Issue 10928195: First round of dead file removal (Closed) Base URL: https://github.com/samclegg/nativeclient-sdk.git@master
Patch Set: Created 8 years, 3 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
OLDNEW
(Empty)
1 <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/m sbuild/2003">
2 <PropertyGroup>
3 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
4 <SchemaVersion>2.0</SchemaVersion>
5 <ProjectGuid>$guid1$</ProjectGuid>
6 <OutputType>Exe</OutputType>
7 <RootNamespace>$safeprojectname$</RootNamespace>
8 <AssemblyName>$safeprojectname$</AssemblyName>
9 <MainFile>NaClMain.c</MainFile>
10 <INCLUDES>-Ic:\src</INCLUDES>
11 <OPT_FLAGS></OPT_FLAGS>
12 <CFLAGS>-Wall -Wno-long-long -pthread -DXP_UNIX -Werror -g </CFLAGS>
13 <Lib>$(NaClSDKRoot)\toolchain\win_x86_newlib\nacl64\lib</Lib>
14 <DebugHost>C:\Program Files (x86)\Google\Google Native Client Support for Vi sual Studio\sel_ldr64.exe</DebugHost>
15 </PropertyGroup>
16 <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
17 <DebugSymbols>true</DebugSymbols>
18 <OutputPath>bin\Debug\</OutputPath>
19 <EnableUnmanagedDebugging>false</EnableUnmanagedDebugging>
20 </PropertyGroup>
21 <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
22 <DebugSymbols>true</DebugSymbols>
23 <OutputPath>bin\Release\</OutputPath>
24 <EnableUnmanagedDebugging>false</EnableUnmanagedDebugging>
25 </PropertyGroup>
26
27 <ItemGroup>
28 <Compile Include="NaClMain.c" />
29 </ItemGroup>
30
31
32 <Import Project="$(MSBuildExtensionsPath)\Google\NaCl\1.0\NaCl.Common.targets" />
33
34 </Project>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698