recorganise directory structure of C client

This commit is contained in:
UnknownShadow200 2018-08-22 17:28:33 +10:00
parent cd85c41a24
commit 17c686feab
133 changed files with 17 additions and 9 deletions

14
.gitignore vendored
View File

@ -23,13 +23,13 @@ bld/
[Oo]bj/ [Oo]bj/
[Oo]utput/ [Oo]utput/
[Pp]rofilingSessions/ [Pp]rofilingSessions/
[sS]rc/Client/audio [sS]rc/audio
[sS]rc/Client/texpacks [sS]rc/texpacks
[sS]rc/Client/maps [sS]rc/maps
[sS]rc/Client/texturecache [sS]rc/texturecache
[sS]rc/Client/logs [sS]rc/logs
[sS]rc/Client/options.txt [sS]rc/options.txt
[sS]rc/Client/screenshots [sS]rc/screenshots
# Roslyn cache directories # Roslyn cache directories
*.ide/ *.ide/

View File

@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14 # Visual Studio 14
VisualStudioVersion = 14.0.25420.1 VisualStudioVersion = 14.0.25420.1
MinimumVisualStudioVersion = 10.0.40219.1 MinimumVisualStudioVersion = 10.0.40219.1
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Client", "Client\Client.vcxproj", "{8A7D82BD-178A-4785-B41B-70EDE998920A}" Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ClassiCube", "ClassiCube.vcxproj", "{8A7D82BD-178A-4785-B41B-70EDE998920A}"
EndProject EndProject
Global Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution GlobalSection(SolutionConfigurationPlatforms) = preSolution

View File

@ -21,7 +21,7 @@
<PropertyGroup Label="Globals"> <PropertyGroup Label="Globals">
<ProjectGuid>{8A7D82BD-178A-4785-B41B-70EDE998920A}</ProjectGuid> <ProjectGuid>{8A7D82BD-178A-4785-B41B-70EDE998920A}</ProjectGuid>
<Keyword>Win32Proj</Keyword> <Keyword>Win32Proj</Keyword>
<RootNamespace>Client</RootNamespace> <RootNamespace>ClassiCube</RootNamespace>
<WindowsTargetPlatformVersion>5.1</WindowsTargetPlatformVersion> <WindowsTargetPlatformVersion>5.1</WindowsTargetPlatformVersion>
</PropertyGroup> </PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
@ -93,6 +93,8 @@
<PrecompiledHeaderFile /> <PrecompiledHeaderFile />
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
<BufferSecurityCheck>false</BufferSecurityCheck> <BufferSecurityCheck>false</BufferSecurityCheck>
<OutputPath>..\x86\Debug\</OutputPath>
<IntermediateOutputPath>..\x86\Debug\obj\</IntermediateOutputPath>
</ClCompile> </ClCompile>
<Link> <Link>
<SubSystem>Windows</SubSystem> <SubSystem>Windows</SubSystem>
@ -114,6 +116,8 @@
<PrecompiledHeaderFile /> <PrecompiledHeaderFile />
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
<BufferSecurityCheck>false</BufferSecurityCheck> <BufferSecurityCheck>false</BufferSecurityCheck>
<OutputPath>..\x64\Debug\</OutputPath>
<IntermediateOutputPath>..\x64\Debug\obj\</IntermediateOutputPath>
</ClCompile> </ClCompile>
<Link> <Link>
<SubSystem>Windows</SubSystem> <SubSystem>Windows</SubSystem>
@ -136,6 +140,8 @@
<PrecompiledHeaderFile /> <PrecompiledHeaderFile />
<RuntimeLibrary>MultiThreaded</RuntimeLibrary> <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
<BufferSecurityCheck>false</BufferSecurityCheck> <BufferSecurityCheck>false</BufferSecurityCheck>
<OutputPath>..\x86\Release\</OutputPath>
<IntermediateOutputPath>..\x86\Release\obj\</IntermediateOutputPath>
<AdditionalOptions> <AdditionalOptions>
</AdditionalOptions> </AdditionalOptions>
<EnableEnhancedInstructionSet>NoExtensions</EnableEnhancedInstructionSet> <EnableEnhancedInstructionSet>NoExtensions</EnableEnhancedInstructionSet>
@ -165,6 +171,8 @@
<PrecompiledHeaderFile /> <PrecompiledHeaderFile />
<RuntimeLibrary>MultiThreaded</RuntimeLibrary> <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
<BufferSecurityCheck>false</BufferSecurityCheck> <BufferSecurityCheck>false</BufferSecurityCheck>
<OutputPath>..\x64\Release\</OutputPath>
<IntermediateOutputPath>..\x64\Release\obj\</IntermediateOutputPath>
<AdditionalOptions> <AdditionalOptions>
</AdditionalOptions> </AdditionalOptions>
<EnableEnhancedInstructionSet>NoExtensions</EnableEnhancedInstructionSet> <EnableEnhancedInstructionSet>NoExtensions</EnableEnhancedInstructionSet>

Some files were not shown because too many files have changed in this diff Show More