aboutsummaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorAris Adamantiadis <aris@0xbadc0de.be>2010-07-23 11:04:09 +0200
committerAris Adamantiadis <aris@0xbadc0de.be>2010-07-23 11:04:09 +0200
commitb4c0b0369472a56f613f04f2bcc4f34c471cd4f1 (patch)
tree6138190a0795fe2205ac5a560e33932a6ef83a31 /build
parente721c122d3f453094d4ab27040765974620f15ef (diff)
downloadlibssh-b4c0b0369472a56f613f04f2bcc4f34c471cd4f1.tar.gz
libssh-b4c0b0369472a56f613f04f2bcc4f34c471cd4f1.tar.xz
libssh-b4c0b0369472a56f613f04f2bcc4f34c471cd4f1.zip
Added the client unit testing information
Diffstat (limited to 'build')
-rwxr-xr-xbuild/build_make.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/build/build_make.sh b/build/build_make.sh
index 1e93c2fc..268a03b8 100755
--- a/build/build_make.sh
+++ b/build/build_make.sh
@@ -63,7 +63,7 @@ function clean_build_dir() {
function usage () {
echo "Usage: `basename $0` [--prefix /install_prefix|--build [debug|final]|--clean|--verbose|--libsuffix (32|64)|--help|--cmakedir /directory|--make
-(gmake|make)|--ccompiler (gcc|cc)|--withstaticlib|--unittesting|--withssh1|--withserver]"
+(gmake|make)|--ccompiler (gcc|cc)|--withstaticlib|--unittesting|--clientunittesting|--withssh1|--withserver]"
cleanup_and_exit
}
@@ -138,6 +138,10 @@ while test -n "$1"; do
OPTIONS="${OPTIONS} -DWITH_TESTING=ON"
shift
;;
+ *-clientunittesting)
+ OPTIONS="${OPTIONS} -DWITH_CLIENT_TESTING=ON"
+ shift
+ ;;
*-withssh1)
OPTIONS="${OPTIONS} -DWITH_SSH1=ON"
shift