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.
9 lines
268 B
9 lines
268 B
#!/bin/sh
|
|
|
|
echo "Building Base2.0 (and by extension, SFML)..."
|
|
# TODO: Fix this foolishness
|
|
cd libs/base2.0
|
|
./BuildDependencies_Debug.sh || exit 1
|
|
jam -j4 -sDEBUG_BUILD=true && jam -j4 -sDEBUG_BUILD=true libBase20 || exit 1
|
|
cd ../../
|
|
echo "Finished building Base2.0!"
|
|
|