OLD | NEW |
1 <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | 1 <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
2 <ItemDefinitionGroup> | 2 <ItemDefinitionGroup> |
3 <ClCompile> | 3 <ClCompile> |
4 <!-- add PPAPI preprocessor --> | 4 <!-- add PPAPI preprocessor --> |
5 <PreprocessorDefinitions>PPAPI;%(PreprocessorDefinitions)</PreprocessorDef
initions> | 5 <PreprocessorDefinitions>PPAPI;%(PreprocessorDefinitions)</PreprocessorDef
initions> |
6 </ClCompile> | 6 </ClCompile> |
7 </ItemDefinitionGroup> | 7 </ItemDefinitionGroup> |
8 | 8 |
9 <!-- Set the run-time library to the non-DLL versions to match Chrome. --> | 9 <!-- Set the run-time library to the non-DLL versions to match Chrome. --> |
10 <ItemDefinitionGroup> | 10 <ItemDefinitionGroup> |
11 <ClCompile> | 11 <ClCompile> |
12 <RuntimeLibrary>MultiThreaded</RuntimeLibrary> | 12 <RuntimeLibrary>MultiThreaded</RuntimeLibrary> |
13 </ClCompile> | 13 </ClCompile> |
14 </ItemDefinitionGroup> | 14 </ItemDefinitionGroup> |
15 <ItemDefinitionGroup Condition="'$(Configuration)' == 'Debug'"> | 15 <ItemDefinitionGroup Condition="'$(Configuration)' == 'Debug'"> |
16 <ClCompile> | 16 <ClCompile> |
17 <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> | 17 <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> |
18 </ClCompile> | 18 </ClCompile> |
19 </ItemDefinitionGroup> | 19 </ItemDefinitionGroup> |
20 | 20 |
21 <!-- Add the Pepper static libraries --> | 21 <!-- Add the Pepper static libraries, change output file --> |
22 <ItemDefinitionGroup> | 22 <ItemDefinitionGroup> |
23 <Link> | 23 <Link> |
24 <AdditionalDependencies>ppapi_cpp.lib;ppapi.lib;%(AdditionalDependencies)<
/AdditionalDependencies> | 24 <AdditionalDependencies>ppapi_cpp.lib;ppapi.lib;</AdditionalDependencies> |
| 25 <OutputFile>$(TargetDir)$(TargetName)$(TargetExt)</OutputFile> |
25 </Link> | 26 </Link> |
26 </ItemDefinitionGroup> | 27 </ItemDefinitionGroup> |
27 | 28 |
28 <!-- setup default debugging parameters --> | 29 <!-- setup default debugging parameters --> |
29 <PropertyGroup> | 30 <PropertyGroup> |
30 <LocalDebuggerCommand>$(CHROME_PATH)\chrome.exe</LocalDebuggerCommand> | 31 <LocalDebuggerCommand>$(CHROME_PATH)\chrome.exe</LocalDebuggerCommand> |
31 <LocalDebuggerCommandArguments>--register-pepper-plugins="$(TargetPath)";app
lication/x-nacl localhost:5103</LocalDebuggerCommandArguments> | 32 <LocalDebuggerCommandArguments>--register-pepper-plugins="$(TargetPath)";app
lication/x-nacl localhost:5103</LocalDebuggerCommandArguments> |
32 </PropertyGroup> | 33 </PropertyGroup> |
33 </Project> | 34 </Project> |
OLD | NEW |