summarylogtreecommitdiffstats
path: root/cmake-wrapper.sh
diff options
context:
space:
mode:
Diffstat (limited to 'cmake-wrapper.sh')
-rwxr-xr-xcmake-wrapper.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/cmake-wrapper.sh b/cmake-wrapper.sh
new file mode 100755
index 000000000000..9a25f9464d52
--- /dev/null
+++ b/cmake-wrapper.sh
@@ -0,0 +1,11 @@
+#!/bin/bash
+
+cd $PWD
+
+if [ "${1}" == "--help" ]
+then
+ echo "cmake version 2.8.12.2"
+ cmake --help
+else
+ cmake "${@}"
+fi