mirror of
https://gitee.com/xiaohuolufeihua/bizhang_-obav.git
synced 2026-05-21 01:12:11 +00:00
48 lines
723 B
CMake
48 lines
723 B
CMake
include(qurt/px4_impl_qurt)
|
|
|
|
function(px4_get_config)
|
|
|
|
px4_parse_function_args(
|
|
NAME px4_set_config_modules
|
|
ONE_VALUE OUT_MODULES
|
|
REQUIRED OUT_MODULES
|
|
ARGN ${ARGN})
|
|
|
|
set(config_module_list
|
|
drivers/device
|
|
|
|
#
|
|
# System commands
|
|
#
|
|
systemcmds/param
|
|
|
|
#
|
|
# Library modules
|
|
#
|
|
modules/systemlib
|
|
modules/mixer
|
|
modules/uORB
|
|
|
|
#
|
|
# Libraries
|
|
#
|
|
lib/mathlib
|
|
lib/mathlib/math/filter
|
|
lib/conversion
|
|
|
|
#
|
|
# QuRT port
|
|
#
|
|
platforms/common
|
|
platforms/qurt/px4_layer
|
|
platforms/posix/work_queue
|
|
platforms/qurt/tests/hello
|
|
platforms/qurt/tests/vcdev_test
|
|
platforms/qurt/tests/hrt_test
|
|
platforms/qurt/tests/wqueue
|
|
)
|
|
set(${OUT_MODULES} ${config_module_list} PARENT_SCOPE)
|
|
|
|
endfunction()
|
|
|