From 805ef9fff1b2e8b3d936b2c044e9c82f41d7c2e8 Mon Sep 17 00:00:00 2001 From: Julian Oes Date: Thu, 5 May 2016 09:11:59 +0200 Subject: [PATCH] cmake: added some comments about eagle/excelsior --- cmake/configs/posix_eagle_default.cmake | 9 ++++++--- cmake/configs/posix_excelsior_default.cmake | 9 +++++++-- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/cmake/configs/posix_eagle_default.cmake b/cmake/configs/posix_eagle_default.cmake index 4b0fad9ced..ddb152fcb0 100644 --- a/cmake/configs/posix_eagle_default.cmake +++ b/cmake/configs/posix_eagle_default.cmake @@ -1,7 +1,10 @@ +# The Eagle board is the first generation Snapdragon Flight board by Qualcomm. +# +# This cmake config builds for POSIX, so the part of the flight stack running +# on the Linux side of the Snapdragon. include(configs/posix_sdflight_default) -# This definition allows to differentiate if this just the usual POSIX build -# or if it is for the Snapdragon. +# This definition allows to differentiate the specific board. add_definitions( -D__PX4_POSIX_EAGLE - ) +) diff --git a/cmake/configs/posix_excelsior_default.cmake b/cmake/configs/posix_excelsior_default.cmake index 2fd57a9ddd..747b124f2e 100644 --- a/cmake/configs/posix_excelsior_default.cmake +++ b/cmake/configs/posix_excelsior_default.cmake @@ -1,5 +1,10 @@ +# Excelsior is the code name of a board currently in development. +# +# This cmake config builds for POSIX, so the part of the flight stack running +# on the Linux side of the Snapdragon. include(configs/posix_sdflight_default) + +# This definition allows to differentiate the specific board. add_definitions( -D__PX4_POSIX_EXCELSIOR -) - +) \ No newline at end of file