mirror of
https://gitee.com/xiaohuolufeihua/bizhang_-obav.git
synced 2026-05-22 01:12:31 +00:00
34 lines
505 B
CMake
34 lines
505 B
CMake
include(qurt/px4_impl_qurt)
|
|
|
|
set(CMAKE_TOOLCHAIN_FILE cmake/toolchains/Toolchain-hexagon.cmake)
|
|
|
|
set(config_module_list
|
|
drivers/device
|
|
|
|
#
|
|
# System commands
|
|
#
|
|
systemcmds/param
|
|
|
|
#
|
|
# Library modules
|
|
#
|
|
modules/systemlib
|
|
modules/uORB
|
|
|
|
#
|
|
# QuRT port
|
|
#
|
|
platforms/common
|
|
platforms/qurt/px4_layer
|
|
platforms/posix/work_queue
|
|
platforms/qurt/tests/hello
|
|
)
|
|
set(${out_module_list} ${config_module_list} PARENT_SCOPE)
|
|
|
|
# output
|
|
set(${OUT_MODULES} ${config_module_list} PARENT_SCOPE)
|
|
|
|
endfunction()
|
|
|