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