This commit is contained in:
Nishi 2026-01-12 02:36:28 +09:00
commit 5101877bd9
Signed by: nishi
GPG key ID: 27EF69B208EB9343
4 changed files with 24 additions and 1 deletions

View file

@ -14,6 +14,6 @@ add_subdirectory(engine)
add_subdirectory(client)
install(
FILES resource/logo.png
FILES data/
DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/assaultfish
)

1
data/README.txt Normal file
View file

@ -0,0 +1 @@
game.pak

1
engine/data/README.txt Normal file
View file

@ -0,0 +1 @@
base.pak

21
wizard.sh Executable file
View file

@ -0,0 +1,21 @@
#!/bin/sh
if [ -d build ]; then
echo "Run me from build, not top directory"
exit 1
fi
if [ "x$USE_WINE" = "x" ]; then
USE_WINE=false
fi
if $USE_WINE; then
if [ "x$WINE" = "x" ]; then
W=wine
else
W=$WINE
fi
E=.exe
fi
$W ./engine/tools/gs_makepak$E base.pak ../engine/data
$W ./engine/tools/gs_makepak$E game.pak ../data