From d604d00dbdd3628b1d3a454eb42eae885d3978ca Mon Sep 17 00:00:00 2001 From: BenCat07 Date: Sat, 10 Mar 2018 10:22:45 +0100 Subject: [PATCH] Anti vac on debug build --- makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/makefile b/makefile index a0b90a7c..0d137146 100644 --- a/makefile +++ b/makefile @@ -4,6 +4,7 @@ # GAME - compile for specific game (tf2, hl2dm, dab, tf2c, css, dynamic), tf2 by default, other ones probably won't compile/crash on inject # CLANG - compile with clang instead of g++ # BUILD_DEBUG - include debug info in the build +# NO_STRIP - Don't Strip library (for use with debug build, can get you vacced) # NO_VISUALS - disable all visuals completely # NO_IPC - disable IPC module completely (also disables followbot lol) # NO_GUI - disable GUI @@ -174,7 +175,7 @@ src/sdk/utlbuffer.o : CXXFLAGS+=-w $(TARGET): $(OBJECTS) @echo Building cathook $(LD) -o $@ $(LDFLAGS) $(OBJECTS) $(LDLIBS) -ifndef BUILD_DEBUG +ifndef NOSTRIP strip --strip-all $@ endif