-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 64aa8b0
Showing
41 changed files
with
11,080 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
* text=auto | ||
|
||
*.c text | ||
*.h text | ||
*.cpp text | ||
*.hpp text | ||
|
||
Rebracer.xml text eol=crlf | ||
*.sln text eol=crlf | ||
*.vcxproj text eol=crlf | ||
*.vcxproj.filters text eol=crlf | ||
*.vcxproj.user text eol=crlf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
*.opensdf | ||
*.sdf | ||
*.suo | ||
Debug | ||
Release | ||
ipch | ||
ElectroPortis/build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio 2013 | ||
VisualStudioVersion = 12.0.30110.0 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ElectroPortis", "ElectroPortis\ElectroPortis.vcxproj", "{93D83957-E3B7-4A3B-BCCC-6F4509F67527}" | ||
EndProject | ||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{31521142-AAD0-4BF0-A442-BD82AA3EF8D2}" | ||
ProjectSection(SolutionItems) = preProject | ||
Rebracer.xml = Rebracer.xml | ||
EndProjectSection | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Win32 = Debug|Win32 | ||
Release|Win32 = Release|Win32 | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{93D83957-E3B7-4A3B-BCCC-6F4509F67527}.Debug|Win32.ActiveCfg = Debug|Win32 | ||
{93D83957-E3B7-4A3B-BCCC-6F4509F67527}.Debug|Win32.Build.0 = Debug|Win32 | ||
{93D83957-E3B7-4A3B-BCCC-6F4509F67527}.Release|Win32.ActiveCfg = Release|Win32 | ||
{93D83957-E3B7-4A3B-BCCC-6F4509F67527}.Release|Win32.Build.0 = Release|Win32 | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
EndGlobal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,173 @@ | ||
<?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="Debug|Win32"> | ||
<Configuration>Debug</Configuration> | ||
<Platform>Win32</Platform> | ||
</ProjectConfiguration> | ||
<ProjectConfiguration Include="Release|Win32"> | ||
<Configuration>Release</Configuration> | ||
<Platform>Win32</Platform> | ||
</ProjectConfiguration> | ||
</ItemGroup> | ||
<PropertyGroup Label="Globals"> | ||
<ProjectGuid>{93D83957-E3B7-4A3B-BCCC-6F4509F67527}</ProjectGuid> | ||
<Keyword>Win32Proj</Keyword> | ||
<RootNamespace>ElectroPortis</RootNamespace> | ||
</PropertyGroup> | ||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> | ||
<ConfigurationType>Application</ConfigurationType> | ||
<UseDebugLibraries>true</UseDebugLibraries> | ||
<PlatformToolset>v120_xp</PlatformToolset> | ||
<CharacterSet>Unicode</CharacterSet> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> | ||
<ConfigurationType>Application</ConfigurationType> | ||
<UseDebugLibraries>false</UseDebugLibraries> | ||
<PlatformToolset>v120_xp</PlatformToolset> | ||
<WholeProgramOptimization>true</WholeProgramOptimization> | ||
<CharacterSet>Unicode</CharacterSet> | ||
</PropertyGroup> | ||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> | ||
<ImportGroup Label="ExtensionSettings"> | ||
</ImportGroup> | ||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | ||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
</ImportGroup> | ||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | ||
<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)'=='Debug|Win32'"> | ||
<LinkIncremental>true</LinkIncremental> | ||
<IntDir>build\$(Configuration)\</IntDir> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | ||
<LinkIncremental>false</LinkIncremental> | ||
<IntDir>build\$(Configuration)\</IntDir> | ||
</PropertyGroup> | ||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | ||
<ClCompile> | ||
<PrecompiledHeader>Use</PrecompiledHeader> | ||
<WarningLevel>Level3</WarningLevel> | ||
<Optimization>Disabled</Optimization> | ||
<PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
<SDLCheck>true</SDLCheck> | ||
<EnableEnhancedInstructionSet>StreamingSIMDExtensions2</EnableEnhancedInstructionSet> | ||
<BasicRuntimeChecks>StackFrameRuntimeCheck</BasicRuntimeChecks> | ||
<AdditionalIncludeDirectories>$(ProjectDir)ext\wglext;$(ProjectDir)ext\SHRWLocks;$(ProjectDir)ext\rand48;$(ProjectDir)ext\vs2012_math;$(ProjectDir)include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
</ClCompile> | ||
<Link> | ||
<SubSystem>Windows</SubSystem> | ||
<GenerateDebugInformation>true</GenerateDebugInformation> | ||
<AdditionalDependencies>opengl32.lib;glu32.lib;winmm.lib;%(AdditionalDependencies)</AdditionalDependencies> | ||
</Link> | ||
</ItemDefinitionGroup> | ||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | ||
<ClCompile> | ||
<WarningLevel>Level3</WarningLevel> | ||
<PrecompiledHeader>Use</PrecompiledHeader> | ||
<Optimization>MaxSpeed</Optimization> | ||
<FunctionLevelLinking>true</FunctionLevelLinking> | ||
<IntrinsicFunctions>true</IntrinsicFunctions> | ||
<PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
<SDLCheck>true</SDLCheck> | ||
<EnableEnhancedInstructionSet>StreamingSIMDExtensions2</EnableEnhancedInstructionSet> | ||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary> | ||
<AdditionalIncludeDirectories>$(ProjectDir)ext\wglext;$(ProjectDir)ext\SHRWLocks;$(ProjectDir)ext\rand48;$(ProjectDir)ext\vs2012_math;$(ProjectDir)include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
</ClCompile> | ||
<Link> | ||
<SubSystem>Windows</SubSystem> | ||
<GenerateDebugInformation>true</GenerateDebugInformation> | ||
<EnableCOMDATFolding>true</EnableCOMDATFolding> | ||
<OptimizeReferences>true</OptimizeReferences> | ||
<AdditionalDependencies>opengl32.lib;glu32.lib;winmm.lib;%(AdditionalDependencies)</AdditionalDependencies> | ||
</Link> | ||
</ItemDefinitionGroup> | ||
<ItemGroup> | ||
<ClInclude Include="ext\SHRWLocks\SHRWLocks.hpp" /> | ||
<ClInclude Include="include\ep.h" /> | ||
<ClInclude Include="ext\vs2012_math\vs2012_math.h" /> | ||
<ClInclude Include="ext\vs2012_math\vs2012_math_private.h" /> | ||
<ClInclude Include="ext\rand48\rand48.h" /> | ||
<ClInclude Include="include\render.hpp" /> | ||
<ClInclude Include="include\replay_draw.hpp" /> | ||
<ClInclude Include="resource\resource.h" /> | ||
<ClInclude Include="include\stdafx.h" /> | ||
<ClInclude Include="include\stdafx.hpp" /> | ||
<ClInclude Include="include\targetver.h" /> | ||
<ClInclude Include="include\timeutil.hpp" /> | ||
<ClInclude Include="ext\wglext\wglext.h" /> | ||
<ClInclude Include="include\saver.hpp" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ClCompile Include="src\ep.c" /> | ||
<ClCompile Include="src\main.cpp"> | ||
<PrecompiledHeaderFile Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">stdafx.hpp</PrecompiledHeaderFile> | ||
<PrecompiledHeaderOutputFile Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(IntDir)$(TargetName)_cpp.pch</PrecompiledHeaderOutputFile> | ||
<PrecompiledHeaderFile Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">stdafx.hpp</PrecompiledHeaderFile> | ||
<PrecompiledHeaderOutputFile Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(IntDir)$(TargetName)_cpp.pch</PrecompiledHeaderOutputFile> | ||
</ClCompile> | ||
<ClCompile Include="ext\vs2012_math\math_constants.c" /> | ||
<ClCompile Include="ext\vs2012_math\s_expm1.c" /> | ||
<ClCompile Include="ext\rand48\drand48.c" /> | ||
<ClCompile Include="ext\rand48\erand48.c" /> | ||
<ClCompile Include="ext\rand48\srand48.c" /> | ||
<ClCompile Include="ext\rand48\_rand48.c" /> | ||
<ClCompile Include="src\render.cpp"> | ||
<PrecompiledHeaderFile Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">stdafx.hpp</PrecompiledHeaderFile> | ||
<PrecompiledHeaderOutputFile Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(IntDir)$(TargetName)_cpp.pch</PrecompiledHeaderOutputFile> | ||
<PrecompiledHeaderFile Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">stdafx.hpp</PrecompiledHeaderFile> | ||
<PrecompiledHeaderOutputFile Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(IntDir)$(TargetName)_cpp.pch</PrecompiledHeaderOutputFile> | ||
</ClCompile> | ||
<ClCompile Include="src\replay_draw.cpp"> | ||
<PrecompiledHeaderFile Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">stdafx.hpp</PrecompiledHeaderFile> | ||
<PrecompiledHeaderOutputFile Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(IntDir)$(TargetName)_cpp.pch</PrecompiledHeaderOutputFile> | ||
<PrecompiledHeaderFile Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">stdafx.hpp</PrecompiledHeaderFile> | ||
<PrecompiledHeaderOutputFile Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(IntDir)$(TargetName)_cpp.pch</PrecompiledHeaderOutputFile> | ||
</ClCompile> | ||
<ClCompile Include="src\stdafx.c"> | ||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader> | ||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader> | ||
</ClCompile> | ||
<ClCompile Include="src\stdafx.cpp"> | ||
<ObjectFileName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(IntDir)$(TargetName)_cpp.obj</ObjectFileName> | ||
<ObjectFileName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(IntDir)$(TargetName)_cpp.obj</ObjectFileName> | ||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader> | ||
<PrecompiledHeaderFile Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">stdafx.hpp</PrecompiledHeaderFile> | ||
<PrecompiledHeaderOutputFile Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(IntDir)$(TargetName)_cpp.pch</PrecompiledHeaderOutputFile> | ||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader> | ||
<PrecompiledHeaderFile Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">stdafx.hpp</PrecompiledHeaderFile> | ||
<PrecompiledHeaderOutputFile Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(IntDir)$(TargetName)_cpp.pch</PrecompiledHeaderOutputFile> | ||
</ClCompile> | ||
<ClCompile Include="src\util.cpp"> | ||
<PrecompiledHeaderFile Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">stdafx.hpp</PrecompiledHeaderFile> | ||
<PrecompiledHeaderOutputFile Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(IntDir)$(TargetName)_cpp.pch</PrecompiledHeaderOutputFile> | ||
<PrecompiledHeaderFile Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">stdafx.hpp</PrecompiledHeaderFile> | ||
<PrecompiledHeaderOutputFile Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(IntDir)$(TargetName)_cpp.pch</PrecompiledHeaderOutputFile> | ||
</ClCompile> | ||
<ClCompile Include="src\saver.cpp"> | ||
<PrecompiledHeaderFile Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">stdafx.hpp</PrecompiledHeaderFile> | ||
<PrecompiledHeaderOutputFile Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(IntDir)$(TargetName)_cpp.pch</PrecompiledHeaderOutputFile> | ||
<PrecompiledHeaderFile Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">stdafx.hpp</PrecompiledHeaderFile> | ||
<PrecompiledHeaderOutputFile Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(IntDir)$(TargetName)_cpp.pch</PrecompiledHeaderOutputFile> | ||
</ClCompile> | ||
<ClInclude Include="include\util.hpp"> | ||
<PrecompiledHeaderFile Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">stdafx.hpp</PrecompiledHeaderFile> | ||
<PrecompiledHeaderOutputFile Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(IntDir)$(TargetName)_cpp.pch</PrecompiledHeaderOutputFile> | ||
<PrecompiledHeaderFile Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">stdafx.hpp</PrecompiledHeaderFile> | ||
<PrecompiledHeaderOutputFile Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(IntDir)$(TargetName)_cpp.pch</PrecompiledHeaderOutputFile> | ||
<FileType>CppCode</FileType> | ||
</ClInclude> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ResourceCompile Include="resource\ElectroPortis.rc" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Image Include="resource\icon1.ico" /> | ||
</ItemGroup> | ||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | ||
<ImportGroup Label="ExtensionTargets"> | ||
</ImportGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,157 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<ItemGroup> | ||
<Filter Include="Source Files"> | ||
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier> | ||
<Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions> | ||
</Filter> | ||
<Filter Include="Header Files"> | ||
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier> | ||
<Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions> | ||
</Filter> | ||
<Filter Include="Resource Files"> | ||
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier> | ||
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions> | ||
</Filter> | ||
<Filter Include="Header Files\saver"> | ||
<UniqueIdentifier>{0c326686-d460-4663-9c39-7ead6ca1382b}</UniqueIdentifier> | ||
</Filter> | ||
<Filter Include="Header Files\ext"> | ||
<UniqueIdentifier>{14de657e-d2f2-4856-a7e8-24a186acfdb8}</UniqueIdentifier> | ||
</Filter> | ||
<Filter Include="Header Files\ext\vs2012_math"> | ||
<UniqueIdentifier>{54e3c5f6-6954-43fb-9942-18c18147ab69}</UniqueIdentifier> | ||
</Filter> | ||
<Filter Include="Header Files\ext\rand48"> | ||
<UniqueIdentifier>{d41b0530-79f3-4d0e-bfc8-7360cf6ebbcc}</UniqueIdentifier> | ||
</Filter> | ||
<Filter Include="Source Files\ext"> | ||
<UniqueIdentifier>{41d7e2a8-a2cf-48f6-a426-0e1538f8f53b}</UniqueIdentifier> | ||
</Filter> | ||
<Filter Include="Source Files\ext\vs2012_math"> | ||
<UniqueIdentifier>{54da948b-1041-40a0-96b3-9f8ea407492e}</UniqueIdentifier> | ||
</Filter> | ||
<Filter Include="Source Files\ext\rand48"> | ||
<UniqueIdentifier>{026ca3d4-2f8f-46ec-be7a-174d20921b80}</UniqueIdentifier> | ||
</Filter> | ||
<Filter Include="Source Files\saver"> | ||
<UniqueIdentifier>{ceea6277-9931-43a3-afd6-53fd33ed47e5}</UniqueIdentifier> | ||
</Filter> | ||
<Filter Include="Header Files\resource"> | ||
<UniqueIdentifier>{e73f0cad-85a4-4698-bf4f-925cdcb3964a}</UniqueIdentifier> | ||
</Filter> | ||
<Filter Include="Header Files\pch"> | ||
<UniqueIdentifier>{eb75e1db-e50d-48a6-94e3-c867214e55a2}</UniqueIdentifier> | ||
</Filter> | ||
<Filter Include="Source Files\pch"> | ||
<UniqueIdentifier>{46783947-36ba-4a74-af9a-80464fb3aea8}</UniqueIdentifier> | ||
</Filter> | ||
<Filter Include="Header Files\ext\SHRWLocks"> | ||
<UniqueIdentifier>{b52a72d5-5c41-4f01-8cac-fd7161adbdcf}</UniqueIdentifier> | ||
</Filter> | ||
<Filter Include="Header Files\ext\wglext"> | ||
<UniqueIdentifier>{a0712e8a-f697-463a-94b1-70f31ef02bd6}</UniqueIdentifier> | ||
</Filter> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ClInclude Include="include\render.hpp"> | ||
<Filter>Header Files\saver</Filter> | ||
</ClInclude> | ||
<ClInclude Include="include\replay_draw.hpp"> | ||
<Filter>Header Files\saver</Filter> | ||
</ClInclude> | ||
<ClInclude Include="include\timeutil.hpp"> | ||
<Filter>Header Files\saver</Filter> | ||
</ClInclude> | ||
<ClInclude Include="include\util.hpp"> | ||
<Filter>Header Files\saver</Filter> | ||
</ClInclude> | ||
<ClInclude Include="ext\rand48\rand48.h"> | ||
<Filter>Header Files\ext\rand48</Filter> | ||
</ClInclude> | ||
<ClInclude Include="ext\vs2012_math\vs2012_math.h"> | ||
<Filter>Header Files\ext\vs2012_math</Filter> | ||
</ClInclude> | ||
<ClInclude Include="ext\vs2012_math\vs2012_math_private.h"> | ||
<Filter>Header Files\ext\vs2012_math</Filter> | ||
</ClInclude> | ||
<ClInclude Include="include\targetver.h"> | ||
<Filter>Header Files</Filter> | ||
</ClInclude> | ||
<ClInclude Include="resource\resource.h"> | ||
<Filter>Header Files\resource</Filter> | ||
</ClInclude> | ||
<ClInclude Include="include\stdafx.h"> | ||
<Filter>Header Files\pch</Filter> | ||
</ClInclude> | ||
<ClInclude Include="include\stdafx.hpp"> | ||
<Filter>Header Files\pch</Filter> | ||
</ClInclude> | ||
<ClInclude Include="include\saver.hpp"> | ||
<Filter>Header Files\saver</Filter> | ||
</ClInclude> | ||
<ClInclude Include="include\ep.h"> | ||
<Filter>Header Files\saver</Filter> | ||
</ClInclude> | ||
<ClInclude Include="ext\SHRWLocks\SHRWLocks.hpp"> | ||
<Filter>Header Files\ext\SHRWLocks</Filter> | ||
</ClInclude> | ||
<ClInclude Include="ext\wglext\wglext.h"> | ||
<Filter>Header Files\ext\wglext</Filter> | ||
</ClInclude> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ClCompile Include="ext\rand48\_rand48.c"> | ||
<Filter>Source Files\ext\rand48</Filter> | ||
</ClCompile> | ||
<ClCompile Include="ext\rand48\drand48.c"> | ||
<Filter>Source Files\ext\rand48</Filter> | ||
</ClCompile> | ||
<ClCompile Include="ext\rand48\erand48.c"> | ||
<Filter>Source Files\ext\rand48</Filter> | ||
</ClCompile> | ||
<ClCompile Include="ext\rand48\srand48.c"> | ||
<Filter>Source Files\ext\rand48</Filter> | ||
</ClCompile> | ||
<ClCompile Include="ext\vs2012_math\math_constants.c"> | ||
<Filter>Source Files\ext\vs2012_math</Filter> | ||
</ClCompile> | ||
<ClCompile Include="ext\vs2012_math\s_expm1.c"> | ||
<Filter>Source Files\ext\vs2012_math</Filter> | ||
</ClCompile> | ||
<ClCompile Include="src\ep.c"> | ||
<Filter>Source Files\saver</Filter> | ||
</ClCompile> | ||
<ClCompile Include="src\main.cpp"> | ||
<Filter>Source Files\saver</Filter> | ||
</ClCompile> | ||
<ClCompile Include="src\render.cpp"> | ||
<Filter>Source Files\saver</Filter> | ||
</ClCompile> | ||
<ClCompile Include="src\replay_draw.cpp"> | ||
<Filter>Source Files\saver</Filter> | ||
</ClCompile> | ||
<ClCompile Include="src\util.cpp"> | ||
<Filter>Source Files\saver</Filter> | ||
</ClCompile> | ||
<ClCompile Include="src\stdafx.c"> | ||
<Filter>Source Files\pch</Filter> | ||
</ClCompile> | ||
<ClCompile Include="src\stdafx.cpp"> | ||
<Filter>Source Files\pch</Filter> | ||
</ClCompile> | ||
<ClCompile Include="src\saver.cpp"> | ||
<Filter>Source Files\saver</Filter> | ||
</ClCompile> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ResourceCompile Include="resource\ElectroPortis.rc"> | ||
<Filter>Resource Files</Filter> | ||
</ResourceCompile> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Image Include="resource\icon1.ico"> | ||
<Filter>Resource Files</Filter> | ||
</Image> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<ShowAllFiles>false</ShowAllFiles> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | ||
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | ||
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor> | ||
</PropertyGroup> | ||
</Project> |
Oops, something went wrong.