diff options
author | Ted Gould <ted@gould.cx> | 2013-08-27 12:55:22 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2013-08-27 12:55:22 -0500 |
commit | c440b9d6a1737e3be03e205e32fec64ebdfcb2df (patch) | |
tree | b74867b600c41ff03ed87565eae38d2daaa47d5f /build.sh | |
parent | 4661ef2d0a834509194d069466e3905aece05183 (diff) | |
parent | b7a8f35077f950dc6dab640e759341c1c2476f5c (diff) | |
download | ayatana-indicator-session-c440b9d6a1737e3be03e205e32fec64ebdfcb2df.tar.gz ayatana-indicator-session-c440b9d6a1737e3be03e205e32fec64ebdfcb2df.tar.bz2 ayatana-indicator-session-c440b9d6a1737e3be03e205e32fec64ebdfcb2df.zip |
Merging trunk
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/build.sh b/build.sh new file mode 100755 index 0000000..b69687c --- /dev/null +++ b/build.sh @@ -0,0 +1,18 @@ +#! /bin/bash +set -e + +mkdir -p build + +if [ -f "/usr/bin/ninja" ] ; then + EXTRA_ARGS="-G Ninja" + BUILD_COMMAND="ninja" +else + BUILD_COMMAND="make" +fi + +echo "Using $BUILD_COMMAND to build" +( + cd build + cmake .. $EXTRA_ARGS -DCMAKE_INSTALL_PREFIX=../../install -DCMAKE_BUILD_TYPE=Debug + $BUILD_COMMAND +) |