Metamod:Source - C++ Plugin Environment and Detour Library for the Source Engine
Go to file
2025-10-15 15:42:47 +03:00
.github Update Windows CI runner win2019 -> win2022 2025-06-10 21:16:47 -04:00
core Remove RTLD_DEEPBIND flag from source2 titles 2025-08-08 15:26:23 +03:00
cruft/installer More re-arranging. Not what we discussed in IRC but I think it works out better, Make can't deal with upward dependencies nicely. 2008-11-14 04:14:35 -06:00
hl2sdk-manifests@f559b1cc8f Update hl2sdk-manifests 2025-02-19 20:09:31 -05:00
loader Fixed mm_DetermineBackendS1 tests for last few games. 2025-06-29 09:43:36 -04:00
public Fix missing includes and standardize non-system includes to quotes 2025-04-20 11:38:45 -04:00
samples Update s2_sample_mm AMBuildScript 2025-08-12 19:28:54 +03:00
support Fix unescaped regex warning in build script 2023-11-13 19:55:09 -05:00
third_party Update amtl 2023-11-12 12:42:07 -05:00
versionlib Fix missing includes and standardize non-system includes to quotes 2025-04-20 11:38:45 -04:00
.gitignore chore: Add another build dir pattern to .gitignore 2024-08-04 15:02:26 -04:00
.gitmodules Remove s2 sample plugin hl2sdk-manifest submodule 2023-11-15 19:09:10 -05:00
.travis.yml Upgrade to AMBuild 2.2. 2020-08-19 14:41:55 -07:00
AMBuildScript Correct gcc flag placement 2025-05-28 21:29:02 -04:00
appveyor.yml Enable Insurgency and Blade Symphony x64 builds (#77) 2020-12-22 23:45:29 +01:00
configure.py Expose --disable-auto-versioning 2023-10-18 20:33:06 -04:00
LICENSE.txt More reorganization. 2008-11-14 04:29:33 -06:00
product.version Bump version to 2.0.0-dev 2023-05-21 12:08:11 -04:00
pushbuild.txt Trigger build for hl2sdk-cs2 update 2025-10-15 15:42:47 +03:00
README.md Update mm_DetermineBackendS1 test. 2025-03-16 12:42:30 -04:00

Metamod:Source

Metamod:Source - A C++ Plugin Environment and Detour Library for the Source Engine.

Build instructions

Make sure ambuild2 is installed: https://github.com/alliedmodders/ambuild

Clone the repo with submodules:

git clone --recurse-submodules https://github.com/alliedmodders/metamod-source

Clone the SDK dependencies:

cd ..
metamod-source/support/checkout-deps.sh
cd metamod-source

Configure the build:

mkdir build
cd build
python ../configure.py

Build:

ambuild

You can clone an individual SDK e.g.:

cd ..
metamod-source/support/checkout-deps.sh -s episode1
cd metamod-source

You can configure the build for an individual SDK e.g.:

mkdir build
cd build
python ../configure.py --sdks episode1

Stable build snapshots: http://www.metamodsource.net/downloads.php/?branch=stable

Development build snapshots: http://www.metamodsource.net/downloads.php/?branch=master

General documentation: https://wiki.alliedmods.net/Category:Metamod:Source_Documentation

Detouring with SourceHook: https://wiki.alliedmods.net/SourceHook_Development

Development: https://wiki.alliedmods.net/Category:Metamod:Source_Development