things
This commit is contained in:
parent
8fb64454cc
commit
5101877bd9
4 changed files with 24 additions and 1 deletions
|
|
@ -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
1
data/README.txt
Normal file
|
|
@ -0,0 +1 @@
|
|||
game.pak
|
||||
1
engine/data/README.txt
Normal file
1
engine/data/README.txt
Normal file
|
|
@ -0,0 +1 @@
|
|||
base.pak
|
||||
21
wizard.sh
Executable file
21
wizard.sh
Executable 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue