Files
glest-source/mk/linux/build.sh
2019-02-03 18:10:39 +01:00

14 lines
404 B
Bash

#!/bin/bash
# Use this script to build Glest using cmake
# ----------------------------------------------------------------------------
# Written by Mark Vejvoda <mark_vejvoda@hotmail.com>
# Copyright (c) 2011-2013 Mark Vejvoda under GNU GPL v3.0+
currentDir=$PWD
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
cd $DIR
bash ./build-deps.sh
echo
bash ./build-nodeps.sh
cd $currentDir