From f6a8c7b48243f679d697d342b650a34c9dfdf04c Mon Sep 17 00:00:00 2001 From: GAMMACASE Date: Fri, 8 Sep 2023 18:20:54 +0300 Subject: [PATCH] Add missing cpp files to the compilation step --- core/AMBuilder | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/core/AMBuilder b/core/AMBuilder index c0bfef1..4c4c9fa 100644 --- a/core/AMBuilder +++ b/core/AMBuilder @@ -27,7 +27,11 @@ for sdk_name in MMS.sdks: ] if sdk_name in ['dota', 'cs2']: - binary.sources += ['provider/source2/provider_source2.cpp'] + binary.sources += [ + 'provider/source2/provider_source2.cpp', + os.path.join(sdk.path, 'tier1', 'convar.cpp'), + os.path.join(sdk.path, 'public', 'tier0', 'memoverride.cpp') + ] else: binary.sources += [ 'provider/source/provider_source.cpp',