updated terrain estimator and runway takeoff libs to cmake build system

This commit is contained in:
Roman
2015-11-06 22:48:44 +01:00
parent 3a46487fa4
commit 4abff89be0
10 changed files with 37 additions and 14 deletions
@@ -111,6 +111,8 @@ set(config_module_list
lib/geo_lookup
lib/conversion
lib/launchdetection
lib/terrain_estimation
lib/runway_takeoff
platforms/nuttx
# had to add for cmake, not sure why wasn't in original config
@@ -118,6 +118,8 @@ set(config_module_list
lib/geo_lookup
lib/conversion
lib/launchdetection
lib/terrain_estimation
lib/runway_takeoff
platforms/nuttx
# had to add for cmake, not sure why wasn't in original config
+2
View File
@@ -38,6 +38,8 @@ set(config_module_list
lib/geo
lib/geo_lookup
lib/conversion
lib/terrain_estimation
lib/runway_takeoff
platforms/common
platforms/posix/px4_layer
+2
View File
@@ -56,6 +56,8 @@ set(config_module_list
lib/geo
lib/geo_lookup
lib/launchdetection
lib/terrain_estimation
lib/runway_takeoff
)
set(config_extra_builtin_cmds
+2
View File
@@ -47,6 +47,8 @@ set(config_module_list
lib/geo
lib/geo_lookup
lib/conversion
lib/terrain_estimation
lib/runway_takeoff
modules/controllib
#
+2
View File
@@ -70,6 +70,8 @@ set(config_module_list
lib/geo
lib/geo_lookup
lib/conversion
lib/terrain_estimation
lib/runway_takeoff
#
# QuRT port
+2
View File
@@ -52,6 +52,8 @@ set(config_module_list
lib/geo_lookup
lib/conversion
lib/ecl
lib/terrain_estimation
lib/runway_takeoff
#
# QuRT port
+1
View File
@@ -39,6 +39,7 @@ px4_add_module(
attitude_fw/ecl_pitch_controller.cpp
attitude_fw/ecl_roll_controller.cpp
attitude_fw/ecl_yaw_controller.cpp
attitude_fw/ecl_wheel_controller.cpp
l1/ecl_l1_pos_controller.cpp
validation/data_validator.cpp
validation/data_validator_group.cpp
@@ -1,6 +1,6 @@
############################################################################
#
# Copyright (c) 2012, 2013, 2014 PX4 Development Team. All rights reserved.
# Copyright (c) 2015 PX4 Development Team. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
@@ -30,12 +30,14 @@
# POSSIBILITY OF SUCH DAMAGE.
#
############################################################################
#
# RunwayTakeoff Library
#
SRCS = RunwayTakeoff.cpp \
runway_takeoff_params.c
MAXOPTIMIZATION = -Os
px4_add_module(
MODULE lib__runway_takeoff
COMPILE_FLAGS
-Os
SRCS
RunwayTakeoff.cpp
runway_takeoff_params.c
DEPENDS
platforms__common
)
# vim: set noet ft=cmake fenc=utf-8 ff=unix :
@@ -30,7 +30,13 @@
# POSSIBILITY OF SUCH DAMAGE.
#
############################################################################
SRCS = terrain_estimator.cpp
MAXOPTIMIZATION = -Os
px4_add_module(
MODULE lib__terrain_estimation
COMPILE_FLAGS
-Os
SRCS
terrain_estimator.cpp
DEPENDS
platforms__common
)
# vim: set noet ft=cmake fenc=utf-8 ff=unix :