The open source repository for the action RPG game in development by Sig Productions titled 'Adventures in Lestoria'!
https://forums.lestoria.net
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
622 B
18 lines
622 B
clear
|
|
|
|
mkdir bin
|
|
mkdir bin/assets
|
|
|
|
cp -R "Adventures in Lestoria/assets/Campaigns" bin/assets
|
|
cp -R "Adventures in Lestoria/assets/config" bin/assets
|
|
cp -R "Adventures in Lestoria/assets/maps" bin/assets
|
|
rm -R bin/assets/maps/commercial_assets
|
|
cp -R "Adventures in Lestoria/assets/monsters" bin/assets
|
|
cp -R "Adventures in Lestoria/assets/music" bin/assets
|
|
cp -R "Adventures in Lestoria/assets/npcs" bin/assets
|
|
cp -R "Adventures in Lestoria/assets/sounds" bin/assets
|
|
cp -R "Adventures in Lestoria/assets/gamepack.pak" bin/assets
|
|
|
|
source ./emsdk/emsdk_env.sh
|
|
emcmake cmake -DCMAKE_BUILD_TYPE=Release .
|
|
cmake --build . -j 20 |