aboutsummaryrefslogtreecommitdiffstats
path: root/longbow/cmake
diff options
context:
space:
mode:
Diffstat (limited to 'longbow/cmake')
-rw-r--r--longbow/cmake/Modules/FindUncrustify.cmake8
-rwxr-xr-xlongbow/cmake/get_version.sh20
2 files changed, 0 insertions, 28 deletions
diff --git a/longbow/cmake/Modules/FindUncrustify.cmake b/longbow/cmake/Modules/FindUncrustify.cmake
deleted file mode 100644
index e53f65fe..00000000
--- a/longbow/cmake/Modules/FindUncrustify.cmake
+++ /dev/null
@@ -1,8 +0,0 @@
-# Find uncrustify program
-#
-find_program( UNCRUSTIFY_BIN uncrustify
- PATHS
- $ENV{UNCRUSTIFY_HOME}
- )
-
-message( "-- UNCRUSTIFY found in ${UNCRUSTIFY_BIN}" )
diff --git a/longbow/cmake/get_version.sh b/longbow/cmake/get_version.sh
deleted file mode 100755
index 34c6ddb2..00000000
--- a/longbow/cmake/get_version.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh
-
-DATE_VERSION=`date "+%Y%m%d"`
-
-if [ ! -d $1 ]; then
- echo 0.$DATE_VERSION
- exit
-fi
-
-if [ -f $1/BASE_VERSION ]; then
- BASE_VERSION=`cat $1/BASE_VERSION`.
-fi
-
-GIT=`which git`
-
-if test -x $GIT -a -f $1/.git/config; then
- GIT_VERSION=.`git -C $1 rev-parse HEAD | cut -c 1-8`
-fi
-
-echo $BASE_VERSION$DATE_VERSION$GIT_VERSION