mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
15 lines
237 B
Bash
Executable File
15 lines
237 B
Bash
Executable File
#!/bin/bash
|
|
cmake_ver=`cmake --version`
|
|
|
|
if [[ $cmake_ver == "" ]]
|
|
then
|
|
exit 1;
|
|
fi
|
|
|
|
if [[ $cmake_ver == *"2.8"* ]] || [[ $cmake_ver == *"2.9"* ]] || [[ $cmake_ver == *"3.0"* ]] || [[ $cmake_ver == *"3.1"* ]]
|
|
then
|
|
exit 1;
|
|
fi
|
|
|
|
exit 0;
|