build fteqw directly.
Some checks failed
Construct / build (push) Has been cancelled

This commit is contained in:
Marco Cawthorne 2025-02-10 22:06:11 -08:00
parent 5bbcf4cebb
commit 4fff4ff79e
Signed by: eukara
GPG key ID: CE2032F0A2882A22
2 changed files with 11 additions and 4 deletions

View file

@ -17,9 +17,6 @@ jobs:
apt install -y \
imagemagick wget
- name: fteqw
run: wget https://www.fteqw.org/dl/fteqw_linux64.zip && unzip fteqw_linux64.zip && chmod +x fteqw64
- name: setup env
run: |
echo $PRIVATE_KEY > private-key.pem

View file

@ -1,7 +1,17 @@
ENGINE_URL=https://code.idtech.space/fte/fteqw
ENGINE_CLBUILD=m-dbg
all: list
list:
list: fteqw64
./start.sh
fteqw64:
if [ ! -d ThirdParty/fteqw ];then mkdir -p ThirdParty; git clone --depth 1 $(ENGINE_URL) ThirdParty/fteqw;else cd ./ThirdParty/fteqw && git pull;fi
cd ThirdParty/fteqw/engine && $(MAKE) makelibs ARCH=x86_64
cd ThirdParty/fteqw/engine && $(MAKE) $(ENGINE_CLBUILD) ARCH=x86_64
install -m 0777 ./ThirdParty/fteqw/engine/debug/fteqw ./fteqw64
index:
./index.sh