2015-09-10 20:17:38 -07:00
|
|
|
include(posix/px4_impl_posix)
|
2015-09-10 15:00:20 -07:00
|
|
|
|
2015-10-03 14:51:12 -04:00
|
|
|
set(CMAKE_TOOLCHAIN_FILE ${CMAKE_SOURCE_DIR}/cmake/toolchains/Toolchain-arm-linux-gnueabihf.cmake)
|
2016-04-15 14:42:47 -07:00
|
|
|
|
|
|
|
|
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake/cmake_hexagon")
|
2016-01-18 23:16:31 -08:00
|
|
|
|
2016-02-03 01:46:17 -08:00
|
|
|
set(CONFIG_SHMEM "1")
|
2015-09-10 21:52:55 -07:00
|
|
|
|
2016-03-22 20:18:48 +01:00
|
|
|
# This definition allows to differentiate if this just the usual POSIX build
|
|
|
|
|
# or if it is for the Snapdragon.
|
2016-03-27 10:43:41 +02:00
|
|
|
add_definitions(
|
2016-03-22 20:18:48 +01:00
|
|
|
-D__PX4_POSIX_EAGLE
|
|
|
|
|
)
|
|
|
|
|
|
2015-09-10 21:52:55 -07:00
|
|
|
set(config_module_list
|
|
|
|
|
drivers/device
|
|
|
|
|
drivers/blinkm
|
|
|
|
|
drivers/pwm_out_sim
|
|
|
|
|
drivers/rgbled
|
|
|
|
|
drivers/led
|
2015-09-11 17:43:25 -07:00
|
|
|
drivers/boards/sitl
|
2016-03-18 14:28:24 +01:00
|
|
|
drivers/qshell/posix
|
2015-09-10 21:52:55 -07:00
|
|
|
|
|
|
|
|
systemcmds/param
|
|
|
|
|
systemcmds/mixer
|
|
|
|
|
systemcmds/ver
|
2016-02-04 12:40:39 +01:00
|
|
|
systemcmds/topic_listener
|
2015-09-10 21:52:55 -07:00
|
|
|
|
|
|
|
|
modules/mavlink
|
|
|
|
|
|
|
|
|
|
modules/attitude_estimator_ekf
|
|
|
|
|
modules/ekf_att_pos_estimator
|
|
|
|
|
|
|
|
|
|
modules/mc_pos_control
|
|
|
|
|
modules/mc_att_control
|
|
|
|
|
|
2015-09-13 18:55:48 -04:00
|
|
|
modules/param
|
2015-09-10 21:52:55 -07:00
|
|
|
modules/systemlib
|
|
|
|
|
modules/systemlib/mixer
|
|
|
|
|
modules/uORB
|
2016-02-03 01:33:28 -08:00
|
|
|
modules/muorb/krait
|
2015-09-10 21:52:55 -07:00
|
|
|
modules/sensors
|
|
|
|
|
modules/dataman
|
|
|
|
|
modules/sdlog2
|
|
|
|
|
modules/simulator
|
|
|
|
|
modules/commander
|
|
|
|
|
|
2016-04-14 14:07:28 -04:00
|
|
|
lib/controllib
|
2015-09-10 21:52:55 -07:00
|
|
|
lib/mathlib
|
|
|
|
|
lib/mathlib/math/filter
|
2016-01-02 03:14:06 -08:00
|
|
|
lib/conversion
|
|
|
|
|
lib/ecl
|
2015-09-10 21:52:55 -07:00
|
|
|
lib/geo
|
|
|
|
|
lib/geo_lookup
|
2015-11-06 22:48:44 +01:00
|
|
|
lib/terrain_estimation
|
|
|
|
|
lib/runway_takeoff
|
2015-12-11 10:57:41 +01:00
|
|
|
lib/tailsitter_recovery
|
2016-05-03 01:03:28 -07:00
|
|
|
lib/DriverFramework/framework
|
2015-09-10 21:52:55 -07:00
|
|
|
|
2015-09-11 17:43:25 -07:00
|
|
|
platforms/common
|
2015-09-10 21:52:55 -07:00
|
|
|
platforms/posix/px4_layer
|
|
|
|
|
platforms/posix/work_queue
|
|
|
|
|
)
|