2015-09-11 01:52:55 -03:00
|
|
|
include(posix/px4_impl_posix)
|
2015-09-10 19:00:20 -03:00
|
|
|
|
2016-10-19 11:53:11 -03:00
|
|
|
set(CMAKE_TOOLCHAIN_FILE ${PX4_SOURCE_DIR}/cmake/cmake_hexagon/toolchain/Toolchain-arm-linux-gnueabihf.cmake)
|
2016-04-15 18:42:47 -03:00
|
|
|
|
2016-08-18 16:37:23 -03:00
|
|
|
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${PX4_SOURCE_DIR}/cmake/cmake_hexagon")
|
2015-09-10 23:52:23 -03:00
|
|
|
|
2017-03-28 11:10:17 -03:00
|
|
|
set(DISABLE_PARAMS_MODULE_SCOPING TRUE)
|
2016-05-05 03:09:59 -03:00
|
|
|
|
2016-10-19 11:53:11 -03:00
|
|
|
# Get $QC_SOC_TARGET from environment if existing.
|
|
|
|
if (DEFINED ENV{QC_SOC_TARGET})
|
|
|
|
set(QC_SOC_TARGET $ENV{QC_SOC_TARGET})
|
|
|
|
else()
|
|
|
|
set(QC_SOC_TARGET "APQ8074")
|
|
|
|
endif()
|
|
|
|
|
2015-09-11 01:52:55 -03:00
|
|
|
set(config_module_list
|
|
|
|
drivers/device
|
2015-09-10 23:01:51 -03:00
|
|
|
|
2015-09-11 01:52:55 -03:00
|
|
|
modules/uORB
|
2015-09-10 19:00:20 -03:00
|
|
|
|
2016-05-03 05:03:28 -03:00
|
|
|
lib/DriverFramework/framework
|
2017-05-16 12:30:56 -03:00
|
|
|
lib/micro-CDR
|
2016-05-03 05:03:28 -03:00
|
|
|
|
2015-09-11 01:52:55 -03:00
|
|
|
platforms/posix/px4_layer
|
|
|
|
platforms/posix/work_queue
|
2015-09-10 19:00:20 -03:00
|
|
|
|
2015-09-11 01:52:55 -03:00
|
|
|
modules/muorb/krait
|
|
|
|
)
|
2015-09-10 19:00:20 -03:00
|
|
|
|