2022-12-26 21:04:52 +00:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2023-08-02 00:43:31 +00:00
|
|
|
|
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2022-12-26 21:04:52 +00:00
|
|
|
|
<ItemGroup Label="ProjectConfigurations">
|
|
|
|
|
<ProjectConfiguration Include="debug|x64">
|
|
|
|
|
<Configuration>debug</Configuration>
|
|
|
|
|
<Platform>x64</Platform>
|
|
|
|
|
</ProjectConfiguration>
|
|
|
|
|
<ProjectConfiguration Include="release|x64">
|
|
|
|
|
<Configuration>release</Configuration>
|
|
|
|
|
<Platform>x64</Platform>
|
|
|
|
|
</ProjectConfiguration>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<PropertyGroup Label="Globals">
|
|
|
|
|
<ProjectGuid>{3EA67B52-AA5B-F447-3350-EE1E9F04EB4B}</ProjectGuid>
|
|
|
|
|
<IgnoreWarnCompileDuplicatedFilename>true</IgnoreWarnCompileDuplicatedFilename>
|
|
|
|
|
<Keyword>Win32Proj</Keyword>
|
|
|
|
|
<RootNamespace>cnq3-server</RootNamespace>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='debug|x64'" Label="Configuration">
|
|
|
|
|
<ConfigurationType>Application</ConfigurationType>
|
|
|
|
|
<UseDebugLibraries>true</UseDebugLibraries>
|
|
|
|
|
<CharacterSet>Unicode</CharacterSet>
|
|
|
|
|
<PlatformToolset>v143</PlatformToolset>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='release|x64'" Label="Configuration">
|
|
|
|
|
<ConfigurationType>Application</ConfigurationType>
|
|
|
|
|
<UseDebugLibraries>false</UseDebugLibraries>
|
|
|
|
|
<CharacterSet>Unicode</CharacterSet>
|
|
|
|
|
<PlatformToolset>v143</PlatformToolset>
|
|
|
|
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
|
|
|
<ImportGroup Label="ExtensionSettings">
|
|
|
|
|
</ImportGroup>
|
|
|
|
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='debug|x64'">
|
|
|
|
|
<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|x64'">
|
|
|
|
|
<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|x64'">
|
|
|
|
|
<LinkIncremental>true</LinkIncremental>
|
2023-09-20 15:30:48 +00:00
|
|
|
|
<OutDir>..\..\.bin\debug\</OutDir>
|
|
|
|
|
<IntDir>..\..\.build\debug\cnq3-server\</IntDir>
|
|
|
|
|
<TargetName>cnq3-server</TargetName>
|
2022-12-26 21:04:52 +00:00
|
|
|
|
<TargetExt>.exe</TargetExt>
|
|
|
|
|
<GenerateManifest>false</GenerateManifest>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='release|x64'">
|
|
|
|
|
<LinkIncremental>false</LinkIncremental>
|
2023-09-20 15:30:48 +00:00
|
|
|
|
<OutDir>..\..\.bin\release\</OutDir>
|
|
|
|
|
<IntDir>..\..\.build\release\cnq3-server\</IntDir>
|
|
|
|
|
<TargetName>cnq3-server</TargetName>
|
2022-12-26 21:04:52 +00:00
|
|
|
|
<TargetExt>.exe</TargetExt>
|
|
|
|
|
<GenerateManifest>false</GenerateManifest>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='debug|x64'">
|
|
|
|
|
<ClCompile>
|
|
|
|
|
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
|
|
|
|
<WarningLevel>Level4</WarningLevel>
|
2023-08-02 00:43:31 +00:00
|
|
|
|
<PreprocessorDefinitions>DEDICATED;DEBUG;_DEBUG;_CRT_SECURE_NO_WARNINGS;WIN32;_WIN32;_HAS_EXCEPTIONS=0;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
2022-12-26 21:04:52 +00:00
|
|
|
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
|
|
|
|
<Optimization>Disabled</Optimization>
|
|
|
|
|
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
|
|
|
|
<ExceptionHandling>false</ExceptionHandling>
|
|
|
|
|
<RuntimeTypeInfo>false</RuntimeTypeInfo>
|
|
|
|
|
<TreatWChar_tAsBuiltInType>false</TreatWChar_tAsBuiltInType>
|
2022-12-28 19:49:18 +00:00
|
|
|
|
<AdditionalOptions> /wd4267 %(AdditionalOptions)</AdditionalOptions>
|
2023-08-02 00:43:31 +00:00
|
|
|
|
<ExternalWarningLevel>Level3</ExternalWarningLevel>
|
2022-12-26 21:04:52 +00:00
|
|
|
|
</ClCompile>
|
|
|
|
|
<Link>
|
|
|
|
|
<SubSystem>Windows</SubSystem>
|
|
|
|
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
2023-08-02 00:43:31 +00:00
|
|
|
|
<AdditionalDependencies>Winmm.lib;ws2_32.lib;Version.lib;Shlwapi.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
2023-09-20 15:30:48 +00:00
|
|
|
|
<AdditionalLibraryDirectories>..\..\.build\debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
2023-08-02 00:43:31 +00:00
|
|
|
|
<EntryPointSymbol>WinMainCRTStartup</EntryPointSymbol>
|
2022-12-26 21:04:52 +00:00
|
|
|
|
<AdditionalOptions> ..\..\code\win32\winquake.res /STACK:8388608 %(AdditionalOptions)</AdditionalOptions>
|
|
|
|
|
</Link>
|
|
|
|
|
<PreBuildEvent>
|
|
|
|
|
<Command>"..\create_git_header.cmd" "..\..\code\qcommon\git.h"</Command>
|
|
|
|
|
</PreBuildEvent>
|
|
|
|
|
<PostBuildEvent>
|
2023-09-20 15:30:48 +00:00
|
|
|
|
<Command>copy "..\..\.bin\debug\cnq3-server.exe" "$(QUAKE3DIR)"
|
|
|
|
|
copy "..\..\.bin\debug\cnq3-server.pdb" "$(QUAKE3DIR)"</Command>
|
2022-12-26 21:04:52 +00:00
|
|
|
|
</PostBuildEvent>
|
|
|
|
|
</ItemDefinitionGroup>
|
|
|
|
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='release|x64'">
|
|
|
|
|
<ClCompile>
|
|
|
|
|
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
|
|
|
|
<WarningLevel>Level4</WarningLevel>
|
|
|
|
|
<BasicRuntimeChecks>Default</BasicRuntimeChecks>
|
2023-08-02 00:43:31 +00:00
|
|
|
|
<PreprocessorDefinitions>DEDICATED;NDEBUG;_CRT_SECURE_NO_WARNINGS;WIN32;_WIN32;_HAS_EXCEPTIONS=0;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
2022-12-26 21:04:52 +00:00
|
|
|
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
|
|
|
|
<Optimization>MinSpace</Optimization>
|
|
|
|
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
|
|
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
|
|
|
<MinimalRebuild>false</MinimalRebuild>
|
|
|
|
|
<OmitFramePointers>true</OmitFramePointers>
|
|
|
|
|
<StringPooling>true</StringPooling>
|
|
|
|
|
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
|
|
|
|
<ExceptionHandling>false</ExceptionHandling>
|
|
|
|
|
<RuntimeTypeInfo>false</RuntimeTypeInfo>
|
|
|
|
|
<TreatWChar_tAsBuiltInType>false</TreatWChar_tAsBuiltInType>
|
|
|
|
|
<FloatingPointModel>Fast</FloatingPointModel>
|
|
|
|
|
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
|
|
|
|
<AdditionalOptions>/GL /wd4267 %(AdditionalOptions)</AdditionalOptions>
|
2023-08-02 00:43:31 +00:00
|
|
|
|
<ExternalWarningLevel>Level3</ExternalWarningLevel>
|
2022-12-26 21:04:52 +00:00
|
|
|
|
</ClCompile>
|
|
|
|
|
<Link>
|
|
|
|
|
<SubSystem>Windows</SubSystem>
|
|
|
|
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
|
|
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
|
|
|
<OptimizeReferences>true</OptimizeReferences>
|
2023-08-02 00:43:31 +00:00
|
|
|
|
<AdditionalDependencies>Winmm.lib;ws2_32.lib;Version.lib;Shlwapi.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
2023-09-20 15:30:48 +00:00
|
|
|
|
<AdditionalLibraryDirectories>..\..\.build\release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
2023-08-02 00:43:31 +00:00
|
|
|
|
<EntryPointSymbol>WinMainCRTStartup</EntryPointSymbol>
|
2022-12-26 21:04:52 +00:00
|
|
|
|
<AdditionalOptions> ..\..\code\win32\winquake.res /STACK:8388608 /OPT:REF /OPT:ICF %(AdditionalOptions)</AdditionalOptions>
|
|
|
|
|
</Link>
|
|
|
|
|
<PreBuildEvent>
|
|
|
|
|
<Command>"..\create_git_header.cmd" "..\..\code\qcommon\git.h"</Command>
|
|
|
|
|
</PreBuildEvent>
|
|
|
|
|
<PostBuildEvent>
|
2023-09-20 15:30:48 +00:00
|
|
|
|
<Command>copy "..\..\.bin\release\cnq3-server.exe" "$(QUAKE3DIR)"
|
|
|
|
|
copy "..\..\.bin\release\cnq3-server.pdb" "$(QUAKE3DIR)"</Command>
|
2022-12-26 21:04:52 +00:00
|
|
|
|
</PostBuildEvent>
|
|
|
|
|
</ItemDefinitionGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ClInclude Include="..\..\code\botlib\aasfile.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\botlib\be_aas.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\botlib\be_aas_bsp.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\botlib\be_aas_cluster.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\botlib\be_aas_debug.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\botlib\be_aas_def.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\botlib\be_aas_entity.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\botlib\be_aas_file.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\botlib\be_aas_funcs.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\botlib\be_aas_main.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\botlib\be_aas_move.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\botlib\be_aas_optimize.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\botlib\be_aas_reach.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\botlib\be_aas_route.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\botlib\be_aas_routealt.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\botlib\be_aas_sample.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\botlib\be_ai_char.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\botlib\be_ai_chat.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\botlib\be_ai_gen.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\botlib\be_ai_goal.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\botlib\be_ai_move.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\botlib\be_ai_weap.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\botlib\be_ai_weight.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\botlib\be_ea.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\botlib\be_interface.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\botlib\botlib.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\botlib\l_crc.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\botlib\l_libvar.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\botlib\l_log.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\botlib\l_memory.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\botlib\l_precomp.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\botlib\l_script.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\botlib\l_struct.h" />
|
2022-12-28 19:49:18 +00:00
|
|
|
|
<ClInclude Include="..\..\code\client\cl_imgui.h" />
|
2022-12-26 21:04:52 +00:00
|
|
|
|
<ClInclude Include="..\..\code\client\client.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\client\client_help.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\client\keycodes.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\client\keys.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\client\snd_codec.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\client\snd_local.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\client\snd_public.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\qcommon\cg_public.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\qcommon\cm_local.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\qcommon\cm_patch.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\qcommon\cm_polylib.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\qcommon\cm_public.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\qcommon\common_help.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\qcommon\crash.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\qcommon\g_public.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\qcommon\git.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\qcommon\q_platform.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\qcommon\q_shared.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\qcommon\qcommon.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\qcommon\qfiles.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\qcommon\surfaceflags.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\qcommon\syscall_ext.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\qcommon\tr_types.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\qcommon\ui_public.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\qcommon\unzip.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\qcommon\vm_local.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\qcommon\vm_shim.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\server\server.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\win32\resource.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\win32\win_help.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\win32\win_local.h" />
|
|
|
|
|
<ClInclude Include="..\..\code\win32\windows.h" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ClCompile Include="..\..\code\qcommon\cm_load.cpp" />
|
|
|
|
|
<ClCompile Include="..\..\code\qcommon\cm_patch.cpp" />
|
|
|
|
|
<ClCompile Include="..\..\code\qcommon\cm_polylib.cpp" />
|
|
|
|
|
<ClCompile Include="..\..\code\qcommon\cm_test.cpp" />
|
|
|
|
|
<ClCompile Include="..\..\code\qcommon\cm_trace.cpp" />
|
|
|
|
|
<ClCompile Include="..\..\code\qcommon\cmd.cpp" />
|
|
|
|
|
<ClCompile Include="..\..\code\qcommon\common.cpp" />
|
|
|
|
|
<ClCompile Include="..\..\code\qcommon\crash.cpp" />
|
|
|
|
|
<ClCompile Include="..\..\code\qcommon\cvar.cpp" />
|
|
|
|
|
<ClCompile Include="..\..\code\qcommon\files.cpp" />
|
|
|
|
|
<ClCompile Include="..\..\code\qcommon\huffman.cpp" />
|
|
|
|
|
<ClCompile Include="..\..\code\qcommon\huffman_static.cpp" />
|
|
|
|
|
<ClCompile Include="..\..\code\qcommon\json.cpp" />
|
|
|
|
|
<ClCompile Include="..\..\code\qcommon\md4.cpp" />
|
|
|
|
|
<ClCompile Include="..\..\code\qcommon\md5.cpp" />
|
|
|
|
|
<ClCompile Include="..\..\code\qcommon\msg.cpp" />
|
|
|
|
|
<ClCompile Include="..\..\code\qcommon\net_chan.cpp" />
|
|
|
|
|
<ClCompile Include="..\..\code\qcommon\net_ip.cpp" />
|
|
|
|
|
<ClCompile Include="..\..\code\qcommon\q_math.c" />
|
|
|
|
|
<ClCompile Include="..\..\code\qcommon\q_shared.c" />
|
|
|
|
|
<ClCompile Include="..\..\code\qcommon\unzip.cpp" />
|
|
|
|
|
<ClCompile Include="..\..\code\qcommon\vm.cpp" />
|
|
|
|
|
<ClCompile Include="..\..\code\qcommon\vm_interpreted.cpp" />
|
|
|
|
|
<ClCompile Include="..\..\code\qcommon\vm_x86.cpp" />
|
|
|
|
|
<ClCompile Include="..\..\code\server\sv_bot.cpp" />
|
|
|
|
|
<ClCompile Include="..\..\code\server\sv_ccmds.cpp" />
|
|
|
|
|
<ClCompile Include="..\..\code\server\sv_client.cpp" />
|
|
|
|
|
<ClCompile Include="..\..\code\server\sv_game.cpp" />
|
|
|
|
|
<ClCompile Include="..\..\code\server\sv_init.cpp" />
|
|
|
|
|
<ClCompile Include="..\..\code\server\sv_main.cpp" />
|
|
|
|
|
<ClCompile Include="..\..\code\server\sv_net_chan.cpp" />
|
|
|
|
|
<ClCompile Include="..\..\code\server\sv_snapshot.cpp" />
|
|
|
|
|
<ClCompile Include="..\..\code\server\sv_world.cpp" />
|
|
|
|
|
<ClCompile Include="..\..\code\win32\win_exception.cpp" />
|
|
|
|
|
<ClCompile Include="..\..\code\win32\win_main.cpp" />
|
|
|
|
|
<ClCompile Include="..\..\code\win32\win_shared.cpp" />
|
|
|
|
|
<ClCompile Include="..\..\code\win32\win_syscon.cpp" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="botlib.vcxproj">
|
|
|
|
|
<Project>{A1A792F4-8D49-BDCA-7604-D11E6245441B}</Project>
|
|
|
|
|
</ProjectReference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
|
|
|
<ImportGroup Label="ExtensionTargets">
|
|
|
|
|
</ImportGroup>
|
|
|
|
|
</Project>
|