source: trunk/tools/neercs/neercs.vcxproj @ 1628

Last change on this file since 1628 was 1535, checked in by sam, 11 years ago

build: allow to build the PS3 binaries from Visual Studio if the proper
software is installed.

File size: 3.6 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3  <ItemGroup Label="ProjectConfigurations">
4    <ProjectConfiguration Include="Debug|PS3">
5      <Configuration>Debug</Configuration>
6      <Platform>PS3</Platform>
7    </ProjectConfiguration>
8    <ProjectConfiguration Include="Debug|Win32">
9      <Configuration>Debug</Configuration>
10      <Platform>Win32</Platform>
11    </ProjectConfiguration>
12    <ProjectConfiguration Include="Debug|x64">
13      <Configuration>Debug</Configuration>
14      <Platform>x64</Platform>
15    </ProjectConfiguration>
16    <ProjectConfiguration Include="Debug|Xbox 360">
17      <Configuration>Debug</Configuration>
18      <Platform>Xbox 360</Platform>
19    </ProjectConfiguration>
20    <ProjectConfiguration Include="Release|PS3">
21      <Configuration>Release</Configuration>
22      <Platform>PS3</Platform>
23    </ProjectConfiguration>
24    <ProjectConfiguration Include="Release|Win32">
25      <Configuration>Release</Configuration>
26      <Platform>Win32</Platform>
27    </ProjectConfiguration>
28    <ProjectConfiguration Include="Release|x64">
29      <Configuration>Release</Configuration>
30      <Platform>x64</Platform>
31    </ProjectConfiguration>
32    <ProjectConfiguration Include="Release|Xbox 360">
33      <Configuration>Release</Configuration>
34      <Platform>Xbox 360</Platform>
35    </ProjectConfiguration>
36  </ItemGroup>
37  <ItemGroup>
38    <ClInclude Include="neercs.h" />
39    <ClInclude Include="video\render.h" />
40    <ClInclude Include="video\text-render.h" />
41  </ItemGroup>
42  <ItemGroup>
43    <ClCompile Include="neercs.cpp" />
44    <ClCompile Include="video\render.cpp" />
45    <ClCompile Include="video\text-render.cpp" />
46  </ItemGroup>
47  <ItemGroup>
48    <ProjectReference Include="$(SolutionDir)\..\..\src\lolcore.vcxproj">
49      <Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project>
50    </ProjectReference>
51  </ItemGroup>
52  <ItemGroup>
53    <LolFxCompile Include="video\blurh.lolfx" />
54    <LolFxCompile Include="video\blurv.lolfx" />
55    <LolFxCompile Include="video\glow.lolfx" />
56    <LolFxCompile Include="video\postfx.lolfx" />
57    <LolFxCompile Include="video\radial.lolfx" />
58    <LolFxCompile Include="video\simple.lolfx" />
59    <LolFxCompile Include="video\text.lolfx" />
60  </ItemGroup>
61  <PropertyGroup Label="Globals">
62    <ProjectGuid>{587FCCE9-1D8D-4398-B8B6-E8F4E9A92233}</ProjectGuid>
63    <ConfigurationType>Application</ConfigurationType>
64    <Keyword>Win32Proj</Keyword>
65  </PropertyGroup>
66  <Import Project="$(SolutionDir)\Lol.Core.Config.props" />
67  <ImportGroup Label="ExtensionSettings">
68    <Import Project="$(SolutionDir)\Lol.Fx.props" />
69  </ImportGroup>
70  <ImportGroup Label="PropertySheets">
71    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
72    <Import Project="$(SolutionDir)\Lol.Core.Vars.props" />
73  </ImportGroup>
74  <PropertyGroup Label="UserMacros" />
75  <Import Project="$(SolutionDir)\Lol.Core.Rules.props" />
76  <ItemDefinitionGroup>
77    <ClCompile>
78      <AdditionalIncludeDirectories>$(CacaIncludes);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
79    </ClCompile>
80    <Link>
81      <AdditionalDependencies>$(CacaDeps);%(AdditionalDependencies)</AdditionalDependencies>
82      <AdditionalLibraryDirectories>$(CacaLibs);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
83    </Link>
84  </ItemDefinitionGroup>
85  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
86  <ImportGroup Label="ExtensionTargets">
87    <Import Project="$(SolutionDir)\Lol.Fx.targets" />
88  </ImportGroup>
89</Project>
Note: See TracBrowser for help on using the repository browser.