mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 05:40:54 -06:00
Ancient CMake versions required upper-case commands. Later command
names became case-insensitive. Now the preferred style is lower-case.
Run the following shell code:
cmake --help-command-list |
grep -v "cmake version" |
while read c; do
echo 's/\b'"$(echo $c | tr '[:lower:]' '[:upper:]')"'\(\s*\)(/'"$c"'\1(/g'
done >convert.sed &&
git ls-files -z -- bootstrap '*.cmake' '*.cmake.in' '*CMakeLists.txt' |
egrep -z -v '^(Utilities/cm|Source/kwsys/)' |
xargs -0 sed -i -f convert.sed &&
rm convert.sed
14 lines
294 B
CMake
14 lines
294 B
CMake
cmake_minimum_required (VERSION 2.6)
|
|
project(CrossCompile)
|
|
|
|
unset(run_result CACHE)
|
|
|
|
#Simulate the cross compile condition
|
|
set(CMAKE_CROSSCOMPILING ON)
|
|
|
|
add_executable(CrossCompile main.c)
|
|
|
|
try_run(run_result compile_result
|
|
${CrossCompile_BINARY_DIR}
|
|
${CrossCompile_SOURCE_DIR}/main.c)
|