diff --git a/build/cmake/.gitignore b/build/cmake/.gitignore index 06ffd93..c291fdf 100644 --- a/build/cmake/.gitignore +++ b/build/cmake/.gitignore @@ -17,4 +17,5 @@ tab2space tidy5 libtidy5* install_manifest.txt +test71 diff --git a/build/cmake/build-me.sh b/build/cmake/build-me.sh index fe187f2..38b9fc4 100755 --- a/build/cmake/build-me.sh +++ b/build/cmake/build-me.sh @@ -19,6 +19,11 @@ TMPOPTS="-DCMAKE_INSTALL_PREFIX=$TMPINST" # Default to SHARED library in unix TMPOPTS="$TMPOPTS -DBUILD_SHARED_LIB:BOOL=TRUE" +for arg in $@; do + TMPOPTS="$TMPOPTS $arg" +done + + echo "$BN: Doing: 'cmake $TMPSRC $TMPOPTS' to $BLDLOG" cmake $TMPSRC $TMPOPTS >> $BLDLOG 2>&1 if [ ! "$?" = "0" ]; then