mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-27 11:08:29 -04:00
7 lines
121 B
CMake
7 lines
121 B
CMake
macro(MacroSetDefault VAR DEFAULT)
|
|
if (NOT DEFINED ${VAR})
|
|
set(${VAR} ${DEFAULT})
|
|
endif()
|
|
endmacro(MacroSetDefault)
|
|
|