diff options
author | /dev/humancontroller <devhc@example.com> | 2015-02-14 02:58:11 +0100 |
---|---|---|
committer | /dev/humancontroller <devhc@example.com> | 2017-02-07 17:34:58 +0100 |
commit | df10b2a4424296ab35f2826cc67ac4257655c02a (patch) | |
tree | cf81e120c59eb76affa07009979a87d9f182ba5a /msvc/tremded/tremded.vcxproj | |
parent | da349d8dc9bc80d2a14b39ae63b6735f5b45d2e0 (diff) |
include a modern, working MSVC solution
WRONG ! this is possibly outdated by now; also, it isn't complete
Diffstat (limited to 'msvc/tremded/tremded.vcxproj')
-rw-r--r-- | msvc/tremded/tremded.vcxproj | 130 |
1 files changed, 130 insertions, 0 deletions
diff --git a/msvc/tremded/tremded.vcxproj b/msvc/tremded/tremded.vcxproj new file mode 100644 index 00000000..b82e480d --- /dev/null +++ b/msvc/tremded/tremded.vcxproj @@ -0,0 +1,130 @@ +<?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>{0F0DAE63-3D01-5E9F-3CEE-4B2F5C86E40D}</ProjectGuid>
+ <Keyword>Win32Proj</Keyword>
+ <RootNamespace>tremded</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</PlatformToolset>
+ <CharacterSet>NotSet</CharacterSet>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
+ <ConfigurationType>Application</ConfigurationType>
+ <UseDebugLibraries>false</UseDebugLibraries>
+ <PlatformToolset>v120</PlatformToolset>
+ <WholeProgramOptimization>true</WholeProgramOptimization>
+ <CharacterSet>NotSet</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" />
+ <Import Project="..\dependencies.props" />
+ </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" />
+ <Import Project="..\dependencies.props" />
+ </ImportGroup>
+ <PropertyGroup Label="UserMacros" />
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
+ <LinkIncremental>true</LinkIncremental>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
+ <LinkIncremental>false</LinkIncremental>
+ </PropertyGroup>
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
+ <ClCompile>
+ <PrecompiledHeader>
+ </PrecompiledHeader>
+ <WarningLevel>Level3</WarningLevel>
+ <Optimization>Disabled</Optimization>
+ <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;_LIB;DEDICATED;USE_VOIP;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ <SDLCheck>true</SDLCheck>
+ <DisableSpecificWarnings>4996</DisableSpecificWarnings>
+ </ClCompile>
+ <Link>
+ <SubSystem>Console</SubSystem>
+ <GenerateDebugInformation>true</GenerateDebugInformation>
+ <AdditionalDependencies>ws2_32.lib;winmm.lib;user32.lib;advapi32.lib</AdditionalDependencies>
+ <ImageHasSafeExceptionHandlers>false</ImageHasSafeExceptionHandlers>
+ </Link>
+ </ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
+ <ClCompile>
+ <WarningLevel>Level3</WarningLevel>
+ <PrecompiledHeader>
+ </PrecompiledHeader>
+ <Optimization>MaxSpeed</Optimization>
+ <FunctionLevelLinking>true</FunctionLevelLinking>
+ <IntrinsicFunctions>true</IntrinsicFunctions>
+ <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;_LIB;DEDICATED;USE_VOIP;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ <SDLCheck>true</SDLCheck>
+ <DisableSpecificWarnings>4996</DisableSpecificWarnings>
+ </ClCompile>
+ <Link>
+ <SubSystem>Console</SubSystem>
+ <GenerateDebugInformation>true</GenerateDebugInformation>
+ <AdditionalDependencies>ws2_32.lib;winmm.lib;user32.lib;advapi32.lib</AdditionalDependencies>
+ <EnableCOMDATFolding>true</EnableCOMDATFolding>
+ <OptimizeReferences>true</OptimizeReferences>
+ <ImageHasSafeExceptionHandlers>false</ImageHasSafeExceptionHandlers>
+ </Link>
+ </ItemDefinitionGroup>
+ <ItemGroup>
+ <CustomBuild Include="..\..\src\asm\ftola.asm">
+ <FileType>Document</FileType>
+ <Command>Assembling...</Command>
+ <Command Condition="'$(Platform)'=='Win32'">ml -c -Zi "-Fl$(IntDir)%(FileName).lst" "-Fo$(IntDir)%(FileName).obj" "%(FullPath)"</Command>
+ <Outputs Condition="'$(Platform)'=='Win32'">$(IntDir)%(FileName).obj;%(Outputs)</Outputs>
+ <Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">ml -c -Zi "-Fl$(IntDir)%(FileName).lst" "-Fo$(IntDir)%(FileName).obj" "%(FullPath)"</Command>
+ </CustomBuild>
+ <CustomBuild Include="..\..\src\asm\snapvector.asm">
+ <FileType>Document</FileType>
+ <Command>Assembling...</Command>
+ <Command Condition="'$(Platform)'=='Win32'">ml -c -Zi "-Fl$(IntDir)%(FileName).lst" "-Fo$(IntDir)%(FileName).obj" "%(FullPath)"</Command>
+ <Outputs Condition="'$(Platform)'=='Win32'">$(IntDir)%(FileName).obj;%(Outputs)</Outputs>
+ <Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">ml -c -Zi "-Fl$(IntDir)%(FileName).lst" "-Fo$(IntDir)%(FileName).obj" "%(FullPath)"</Command>
+ </CustomBuild>
+ </ItemGroup>
+ <ItemGroup>
+ <ClCompile Include="..\..\dep\minizip\*.c">
+ <ObjectFileName>$(IntDir)dep\minizip\</ObjectFileName>
+ </ClCompile>
+ <ClCompile Include="..\..\src\null\null_client.c;..\..\src\null\null_input.c;..\..\src\null\null_snddma.c">
+ <ObjectFileName>$(IntDir)null\</ObjectFileName>
+ </ClCompile>
+ <ClCompile Include="..\..\src\qcommon\*.c" Exclude="..\..\src\qcommon\vm_*.c">
+ <ObjectFileName>$(IntDir)qcommon\</ObjectFileName>
+ </ClCompile>
+ <ClCompile Include="..\..\src\qcommon\vm_interpreted.c;..\..\src\qcommon\vm_x86.c">
+ <ObjectFileName>$(IntDir)qcommon\</ObjectFileName>
+ </ClCompile>
+ <ClCompile Include="..\..\src\server\*.c">
+ <ObjectFileName>$(IntDir)server\</ObjectFileName>
+ </ClCompile>
+ <ClCompile Include="..\..\src\sys\con_log.c;..\..\src\sys\con_win32.c;..\..\src\sys\sys_main.c;..\..\src\sys\sys_win32.c">
+ <ObjectFileName>$(IntDir)sys\</ObjectFileName>
+ </ClCompile>
+ <ClCompile Include="..\..\dep\zlib\*.c">
+ <ObjectFileName>$(IntDir)zlib\</ObjectFileName>
+ </ClCompile>
+ </ItemGroup>
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
+ <ImportGroup Label="ExtensionTargets">
+ </ImportGroup>
+</Project>
\ No newline at end of file |