blob: a663cc69bcc39015e795d1b5cd7d9b24bc5b892b (
about) (
plain) (
blame)
1
2
3
4
5
6
7
|
# Temporary (hopefully) fix:
if ! grep -q 'cmake_minimum_required' CMakeLists.txt ; then
# Prepend a cmake_minimum_required stanza at the top, which enables
# newer cmake features which the build needs:
sed -i -e '1icmake_minimum_required(VERSION 2.8.9)\' CMakeLists.txt
fi
|