MacroSetDefault.cmake 121 Bytes
Newer Older
Pixhawk's avatar
Pixhawk committed
1 2 3 4 5 6
macro(MacroSetDefault VAR DEFAULT)
	if (NOT DEFINED ${VAR})
		set(${VAR} ${DEFAULT})
	endif()
endmacro(MacroSetDefault)