Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,15 @@ Clone the repository using the following command:

Requirements:
- Source SDK 2013 Multiplayer installed via Steam
- Visual Studio 2022 with the following workload and components:
- Desktop development with C++:
- MSVC v143 - VS 2022 C++ x64/x86 build tools (Latest)
- Windows 11 SDK (10.0.22621.0) or Windows 10 SDK (10.0.19041.1)
- One of the following:
- Visual Studio 2022 with the following workload and components:
- Desktop development with C++:
- MSVC v143 - VS 2022 C++ x64/x86 build tools (Latest)
- Windows 11 SDK (10.0.22621.0) or Windows 10 SDK (10.0.19041.1)
- Visual Studio 2026 with the following workload and components:
- Desktop development with C++:
- MSVC Build Tools for x64/x86 (Latest)
- Windows 11 SDK (10.0.22621.0)
- Python 3.13 or later

Inside the cloned directory, navigate to `src`, run:
Expand Down
File renamed without changes.
1 change: 1 addition & 0 deletions src/createallprojects-vs2026.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
devtools\bin\vpc.exe /hl2mp /tf /define:SOURCESDK /define:VS2026 +everything /mksln everything.sln
4 changes: 3 additions & 1 deletion src/vpc_scripts/source_win32_base.vpc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
// builds the analyze.vpc file will not be listed as a dependency.
$Include "$SRCDIR\vpc_scripts\source_win32_analyze.vpc" [$ANALYZE]

$Conditional $AT_LEAST_VS2022 "true" [$VS2022]
$Conditional $AT_LEAST_VS2026 "true" [$VS2026]
$Conditional $AT_LEAST_VS2022 "true" [$VS2022 || $AT_LEAST_VS2026]
$Conditional $AT_LEAST_VS2019 "true" [$VS2019 || $AT_LEAST_VS2022]
$Conditional $AT_LEAST_VS2017 "true" [$VS2017 || $AT_LEAST_VS2019]
$Conditional $AT_LEAST_VS2015 "true" [$VS2015 || $AT_LEAST_VS2017]
Expand All @@ -26,6 +27,7 @@ $Configuration
$PlatformToolset "v141" [$VS2017]
$PlatformToolset "v142" [$VS2019]
$PlatformToolset "v143" [$VS2022]
$PlatformToolset "v145" [$VS2026]

$WindowsTargetPlatformVersion "10.0"

Expand Down