You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
330 B
11 lines
330 B
#!/bin/sh
|
|
#
|
|
# Usage:
|
|
#
|
|
# lower-case-cmake-tree.sh <base-dir>
|
|
#
|
|
_SCRIPT_DIR=`echo $0 | sed "s/\(.*\)\/lower-case-cmake-tree[.]sh/\1/g"`
|
|
baseDir=$1
|
|
find ${baseDir} -type f \
|
|
\( -name CMakeLists.txt -or -name "*.cmake" -or -name "*.cmake.in" -or -name "*.rst" \) \
|
|
-exec $_SCRIPT_DIR/../python_utils/lower_case_cmake.py {} ';'
|
|
|