OLD | NEW |
| (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> | |
OLD | NEW |