summarylogtreecommitdiffstats
path: root/cmake-wrapper.sh
blob: 9a25f9464d520290c968d8f875ca61455ef165bd (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

cd $PWD

if [ "${1}" == "--help" ]
then
    echo "cmake version 2.8.12.2"
    cmake --help
else
    cmake "${@}"
fi