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

Side by Side Diff: visual_studio/NativeClientVSAddIn/InstallerResources/examples/hello_world_gles/hello_world_gles/hello_world_gles.vcxproj

Issue 10825290: NaCl VS Add-in hello_world_gles example (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 <?xml version="1.0" encoding="utf-8"?>
2 <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microso ft.com/developer/msbuild/2003">
3 <ItemGroup Label="ProjectConfigurations">
4 <ProjectConfiguration Include="Debug|NaCl">
5 <Configuration>Debug</Configuration>
6 <Platform>NaCl</Platform>
7 </ProjectConfiguration>
8 <ProjectConfiguration Include="Debug|PPAPI">
9 <Configuration>Debug</Configuration>
10 <Platform>PPAPI</Platform>
11 </ProjectConfiguration>
12 <ProjectConfiguration Include="Debug|Win32">
13 <Configuration>Debug</Configuration>
14 <Platform>Win32</Platform>
15 </ProjectConfiguration>
16 <ProjectConfiguration Include="Release|NaCl">
17 <Configuration>Release</Configuration>
18 <Platform>NaCl</Platform>
19 </ProjectConfiguration>
20 <ProjectConfiguration Include="Release|PPAPI">
21 <Configuration>Release</Configuration>
22 <Platform>PPAPI</Platform>
23 </ProjectConfiguration>
24 <ProjectConfiguration Include="Release|Win32">
25 <Configuration>Release</Configuration>
26 <Platform>Win32</Platform>
27 </ProjectConfiguration>
28 </ItemGroup>
29 <PropertyGroup Label="Globals">
30 <ProjectGuid>{F82336A6-3A85-45E2-9A96-26DEA54280C5}</ProjectGuid>
31 <Keyword>Win32Proj</Keyword>
32 <RootNamespace>hello_world_gles</RootNamespace>
33 </PropertyGroup>
34 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
35 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label ="Configuration">
36 <ConfigurationType>DynamicLibrary</ConfigurationType>
37 <UseDebugLibraries>true</UseDebugLibraries>
38 <CharacterSet>Unicode</CharacterSet>
39 </PropertyGroup>
40 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Lab el="Configuration">
41 <ConfigurationType>DynamicLibrary</ConfigurationType>
42 <UseDebugLibraries>false</UseDebugLibraries>
43 <WholeProgramOptimization>true</WholeProgramOptimization>
44 <CharacterSet>Unicode</CharacterSet>
45 </PropertyGroup>
46 <PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)' =='Debug|NaCl'">
47 <TargetArchitecture>x86_64</TargetArchitecture>
48 <ToolchainName>newlib</ToolchainName>
49 </PropertyGroup>
50 <PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)' =='Release|NaCl'">
51 <ToolchainName>newlib</ToolchainName>
52 </PropertyGroup>
53 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
54 <ImportGroup Label="ExtensionSettings">
55 </ImportGroup>
56 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'= ='Debug|Win32'">
57 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condit ion="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="Local AppDataPlatform" />
58 </ImportGroup>
59 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'= ='Release|Win32'">
60 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condit ion="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="Local AppDataPlatform" />
61 </ImportGroup>
62 <PropertyGroup Label="UserMacros" />
63 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
64 <LinkIncremental>true</LinkIncremental>
65 </PropertyGroup>
66 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
67 <LinkIncremental>false</LinkIncremental>
68 </PropertyGroup>
69 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|NaCl'">
70 <IncludePath>$(VSNaClSDKRoot)include;</IncludePath>
71 <LibraryPath>$(VSNaClSDKRoot)lib;</LibraryPath>
72 <NaClIrtPath>$(VSNaClSDKRoot)\tools\irt_x86_64.nexe</NaClIrtPath>
73 <OutDir>$(ProjectDir)$(ToolchainName)\</OutDir>
74 <IntDir>$(ToolchainName)\$(Configuration)\</IntDir>
75 </PropertyGroup>
76 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|NaCl'">
77 <IncludePath>$(VSNaClSDKRoot)include;</IncludePath>
78 <LibraryPath>$(VSNaClSDKRoot)lib;</LibraryPath>
79 <NaClIrtPath>$(VSNaClSDKRoot)\tools\irt_x86_64.nexe</NaClIrtPath>
80 <OutDir>$(ProjectDir)$(ToolchainName)\</OutDir>
81 <IntDir>$(ToolchainName)\$(Configuration)\</IntDir>
82 </PropertyGroup>
83 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|PPAPI'">
84 <IncludePath>$(VSNaClSDKRoot)include;$(VCInstallDir)include;$(VCInstallDir)a tlmfc\include;$(WindowsSdkDir)include;$(FrameworkSDKDir)\include;</IncludePath>
85 <LibraryPath>$(VSNaClSDKRoot)lib\win_x86_32_host\$(Configuration);$(VCInstal lDir)lib;$(VCInstallDir)atlmfc\lib;$(WindowsSdkDir)lib;$(FrameworkSDKDir)\lib</L ibraryPath>
86 <ExecutablePath>$(VCInstallDir)bin;$(WindowsSdkDir)bin\NETFX 4.0 Tools;$(Win dowsSdkDir)bin;$(VSInstallDir)Common7\Tools\bin;$(VSInstallDir)Common7\tools;$(V SInstallDir)Common7\ide;$(ProgramFiles)\HTML Help Workshop;$(FrameworkSDKDir)\bi n;$(MSBuildToolsPath32);$(VSInstallDir);$(SystemRoot)\SysWow64;$(FxCopDir);$(PAT H);</ExecutablePath>
87 </PropertyGroup>
88 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|PPAPI'">
89 <IncludePath>$(VSNaClSDKRoot)include;$(VCInstallDir)include;$(VCInstallDir)a tlmfc\include;$(WindowsSdkDir)include;$(FrameworkSDKDir)\include;</IncludePath>
90 <LibraryPath>$(VSNaClSDKRoot)lib\win_x86_32_host\$(Configuration);$(VCInstal lDir)lib;$(VCInstallDir)atlmfc\lib;$(WindowsSdkDir)lib;$(FrameworkSDKDir)\lib</L ibraryPath>
91 <ExecutablePath>$(VCInstallDir)bin;$(WindowsSdkDir)bin\NETFX 4.0 Tools;$(Win dowsSdkDir)bin;$(VSInstallDir)Common7\Tools\bin;$(VSInstallDir)Common7\tools;$(V SInstallDir)Common7\ide;$(ProgramFiles)\HTML Help Workshop;$(FrameworkSDKDir)\bi n;$(MSBuildToolsPath32);$(VSInstallDir);$(SystemRoot)\SysWow64;$(FxCopDir);$(PAT H);</ExecutablePath>
92 </PropertyGroup>
93 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >
94 <ClCompile>
95 <PrecompiledHeader>
96 </PrecompiledHeader>
97 <WarningLevel>Level3</WarningLevel>
98 <Optimization>Disabled</Optimization>
99 <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;HELLO_WORLD_GLES_EX PORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
100 </ClCompile>
101 <Link>
102 <SubSystem>Windows</SubSystem>
103 <GenerateDebugInformation>true</GenerateDebugInformation>
104 </Link>
105 </ItemDefinitionGroup>
106 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32 '">
107 <ClCompile>
108 <WarningLevel>Level3</WarningLevel>
109 <PrecompiledHeader>
110 </PrecompiledHeader>
111 <Optimization>MaxSpeed</Optimization>
112 <FunctionLevelLinking>true</FunctionLevelLinking>
113 <IntrinsicFunctions>true</IntrinsicFunctions>
114 <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;HELLO_WORLD_GLES_EX PORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
115 </ClCompile>
116 <Link>
117 <SubSystem>Windows</SubSystem>
118 <GenerateDebugInformation>true</GenerateDebugInformation>
119 <EnableCOMDATFolding>true</EnableCOMDATFolding>
120 <OptimizeReferences>true</OptimizeReferences>
121 </Link>
122 </ItemDefinitionGroup>
123 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|NaCl'">
124 <Link>
125 <AdditionalDependencies>ppapi;ppapi_gles2</AdditionalDependencies>
126 <OutputFile>$(TargetDir)$(TargetName)_$(TargetArchitecture)$(TargetExt)</O utputFile>
127 </Link>
128 </ItemDefinitionGroup>
129 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|NaCl' ">
130 <Link>
131 <AdditionalDependencies>ppapi;ppapi_gles2</AdditionalDependencies>
132 </Link>
133 </ItemDefinitionGroup>
134 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|PPAPI'" >
135 <Link>
136 <AdditionalDependencies>ppapi.lib;ppapi_gles2.lib</AdditionalDependencies>
137 </Link>
138 </ItemDefinitionGroup>
139 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|PPAPI '">
140 <Link>
141 <AdditionalDependencies>ppapi.lib;ppapi_gles2.lib</AdditionalDependencies>
142 </Link>
143 </ItemDefinitionGroup>
144 <ItemGroup>
145 <None Include="common.js" />
146 <None Include="fragment_shader_es2.frag" />
147 <None Include="hello_world_gles_glibc.nmf" />
148 <None Include="hello_world_gles_newlib.nmf" />
149 <None Include="index_glibc.html" />
150 <None Include="index_newlib.html" />
151 <None Include="index_win.html" />
152 <None Include="vertex_shader_es2.vert" />
153 </ItemGroup>
154 <ItemGroup>
155 <ClCompile Include="hello_world.cc" />
156 <ClCompile Include="matrix.cc" />
157 </ItemGroup>
158 <ItemGroup>
159 <ClInclude Include="matrix.h" />
160 </ItemGroup>
161 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
162 <ImportGroup Label="ExtensionTargets">
163 </ImportGroup>
164 </Project>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698