From 7a00574163029c0c2b649878c95d5acbd083564a Mon Sep 17 00:00:00 2001 From: "Roberto C. Sanchez" Date: Mon, 12 May 2014 08:21:30 -0400 Subject: Imported Upstream version 1.7.2+dfsg --- cmake/build-debug.sh | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100755 cmake/build-debug.sh (limited to 'cmake/build-debug.sh') diff --git a/cmake/build-debug.sh b/cmake/build-debug.sh new file mode 100755 index 0000000..16c6669 --- /dev/null +++ b/cmake/build-debug.sh @@ -0,0 +1,24 @@ +#!/bin/bash +# +# A sample script showing how to build most of the options available to this system. +# Invoke it from the top directory of SWORD by calling $ cmake/build-debug.sh +# + +mkdir -p build +cd build +# Configure with Python and Perl bindings, examples, tests and a debug build into +# a shared library +cmake -DSWORD_BINDINGS="Python Perl" \ + -DSWORD_BUILD_EXAMPLES="Yes" \ + -DSWORD_BUILD_TESTS="Yes" \ + -DLIBSWORD_LIBRARY_TYPE="Shared" \ + -DCMAKE_BUILD_TYPE="Debug" .. \ + -DCMAKE_INSTALL_PREFIX="~/" +make -j10 +cd .. + +echo "Now the library has been built, along with the Perl and Python bindings. \ +Both will be installed to the the user's home directory if you are building \ +under Linux or a similar Unix-like environment if you execute the command \ +'make install' from the build directory with privileges to write into the \ +~/ directory." -- cgit v1.2.3