From 6d0db0d5bee0201b732149616a691827367cfb35 Mon Sep 17 00:00:00 2001 From: Michael Smith Date: Tue, 3 May 2022 04:20:27 +0100 Subject: Add entity property finding and L4D warp testing This was a lot more code than expected, but it might be finally close to time to release the next beta... We'll see if any more rabbit holes present themselves to jump into, though. --- compile | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'compile') diff --git a/compile b/compile index 64523b3..02a80d3 100755 --- a/compile +++ b/compile @@ -51,6 +51,7 @@ src="\ gameinfo.c hook.c kv.c + l4dwarp.c nosleep.c sst.c x86.c" @@ -63,8 +64,11 @@ $HOSTCC -O2 -fuse-ld=lld $warnings -D_FILE_OFFSET_BITS=64 -o .build/codegen \ src/build/codegen.c src/build/cmeta.c $HOSTCC -O2 -fuse-ld=lld $warnings -D_FILE_OFFSET_BITS=64 -o .build/mkgamedata \ src/build/mkgamedata.c src/kv.c +$HOSTCC -O2 -fuse-ld=lld $warnings -D_FILE_OFFSET_BITS=64 -o .build/mkentprops \ + src/build/mkentprops.c src/kv.c .build/codegen `for s in $src; do echo "src/$s"; done` .build/mkgamedata gamedata/engine.kv gamedata/gamelib.kv gamedata/inputsystem.kv +.build/mkentprops gamedata/entprops.kv for s in $src; do cc "$s"; done $CC -shared -fpic -fuse-ld=lld -O0 -w -o .build/libtier0.so src/stubs/tier0.c $CC -shared -fpic -fuse-ld=lld -O0 -w -o .build/libvstdlib.so src/stubs/vstdlib.c -- cgit v1.2.3