From 8da71ee6757f3c0d17e80c2871a71958331ea5b9 Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Tue, 25 Apr 2023 03:06:25 +0300 Subject: [PATCH] server: wscript: remove prop.cpp from excluded files --- dlls/wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/wscript b/dlls/wscript index 2c372154..00781777 100644 --- a/dlls/wscript +++ b/dlls/wscript @@ -20,7 +20,7 @@ def configure(conf): conf.fatal("Could not find hl.def") def build(bld): - excluded_files = ['mpstubb.cpp', 'stats.cpp', 'prop.cpp', 'Wxdebug.cpp'] + excluded_files = ['mpstubb.cpp', 'stats.cpp', 'Wxdebug.cpp'] source = bld.path.ant_glob('**/*.cpp', excl=excluded_files) source += bld.path.parent.ant_glob('pm_shared/*.c')