-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwiitracer.vcxproj
102 lines (102 loc) · 5.27 KB
/
wiitracer.vcxproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Gamecube|Win32">
<Configuration>Gamecube</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Wii|Win32">
<Configuration>Wii</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{1B0DA01C-2F40-4DD4-89B3-7C29B27E35EB}</ProjectGuid>
<Keyword>MakeFileProj</Keyword>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Gamecube|Win32'" Label="Configuration">
<ConfigurationType>Makefile</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v120</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Wii|Win32'" Label="Configuration">
<ConfigurationType>Makefile</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v120</PlatformToolset>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings">
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Gamecube|Win32'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Wii|Win32'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Gamecube|Win32'">
<NMakeOutput>wiitracer.elf</NMakeOutput>
<NMakePreprocessorDefinitions>GEKKO;$(NMakePreprocessorDefinitions)</NMakePreprocessorDefinitions>
<NMakeBuildCommandLine>make -r 2>&1 | sed -e 's/\(.[a-zA-Z]\+\):\([0-9]\+\):/\1(\2):/</NMakeBuildCommandLine>
<NMakeCleanCommandLine>make clean</NMakeCleanCommandLine>
<NMakeReBuildCommandLine>make clean && make -r 2>&1 | sed -e 's/\(.[a-zA-Z]\+\):\([0-9]\+\):/\1(\2):/</NMakeReBuildCommandLine>
<OutDir>$(SolutionDir)\exe</OutDir>
<IntDir>log</IntDir>
<IncludePath>$(DVPRO)\libogc\include;$(DVPRO)\devkitPPC\powerpc-eabi\include;.\obj;.\include</IncludePath>
<LibraryPath>D:\Program Files (x86)\Microsoft DirectX SDK (June 2010)\Lib\x86;$(LibraryPath);</LibraryPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Wii|Win32'">
<NMakeOutput>wiitracer.wii.elf</NMakeOutput>
<NMakePreprocessorDefinitions>GEKKO;WII;$(NMakePreprocessorDefinitions)</NMakePreprocessorDefinitions>
<NMakeBuildCommandLine>make -f MakefileWii -r 2>&1 | sed -e 's/\(.[a-zA-Z]\+\):\([0-9]\+\):/\1(\2):/</NMakeBuildCommandLine>
<NMakeCleanCommandLine>make -f MakefileWii clean</NMakeCleanCommandLine>
<NMakeReBuildCommandLine>make -f MakefileWii clean && make -f MakefileWii -r 2>&1 | sed -e 's/\(.[a-zA-Z]\+\):\([0-9]\+\):/\1(\2):/</NMakeReBuildCommandLine>
<OutDir>$(SolutionDir)\exe</OutDir>
<IntDir>log</IntDir>
<IncludePath>$(DVPRO)\libogc\include;$(DVPRO)\devkitPPC\powerpc-eabi\include;.\obj;.\include</IncludePath>
<LibraryPath>D:\Program Files (x86)\Microsoft DirectX SDK (June 2010)\Lib\x86;$(LibraryPath);</LibraryPath>
</PropertyGroup>
<ItemDefinitionGroup>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="src\camera.c" />
<ClCompile Include="src\gxutils.c" />
<ClCompile Include="src\main.c" />
<ClCompile Include="src\material.c" />
<ClCompile Include="src\mathutils.c" />
<ClCompile Include="src\mtrand.c" />
<ClCompile Include="src\pathtracer.c" />
<ClCompile Include="src\plane.c" />
<ClCompile Include="src\profiler.c" />
<ClCompile Include="src\scene.c" />
<ClCompile Include="src\sphere.c" />
<ClCompile Include="src\timer.c" />
</ItemGroup>
<ItemGroup>
<None Include=".gitignore" />
<None Include="Makefile" />
<ClCompile Include="src\psopt.s" />
<None Include="MakefileWii" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="include\camera.h" />
<ClInclude Include="include\gxutils.h" />
<ClInclude Include="include\hitinfo.h" />
<ClInclude Include="include\material.h" />
<ClInclude Include="include\mathutils.h" />
<ClInclude Include="include\mtrand.h" />
<ClInclude Include="include\mu.h" />
<ClInclude Include="include\pathtracer.h" />
<ClInclude Include="include\plane.h" />
<ClInclude Include="include\profiler.h" />
<ClInclude Include="include\ray.h" />
<ClInclude Include="include\scene.h" />
<ClInclude Include="include\sphere.h" />
<ClInclude Include="include\timer.h" />
<ClInclude Include="include\types.h" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>