From 270bc2ef5d5288831e6726ea825de817bd29dd7e Mon Sep 17 00:00:00 2001 From: Mark Charlebois Date: Thu, 10 Sep 2015 18:37:54 -0700 Subject: [PATCH] cmake: Fixed configs to use px4_get_config The previous function name was changed to px4_get_config Signed-off-by: Mark Charlebois --- Build/.keep | 0 cmake/configs/config_nuttx_sim_simple.cmake | 2 +- ..._posix_eagle_default.mk => config_posix_eagle_default.cmake} | 2 +- cmake/configs/config_posix_eagle_hil.cmake | 2 +- cmake/configs/config_posix_eagle_muorb.cmake | 2 +- cmake/configs/config_posix_eagle_release.cmake | 2 +- cmake/configs/config_qurt_eagle_hello.cmake | 2 +- cmake/configs/config_qurt_eagle_hil.cmake | 2 +- cmake/configs/config_qurt_eagle_muorb.cmake | 2 +- cmake/configs/config_qurt_eagle_release.cmake | 2 +- cmake/configs/config_qurt_eagle_test.cmake | 2 +- cmake/configs/config_qurt_eagle_travis.cmake | 2 +- 12 files changed, 11 insertions(+), 11 deletions(-) create mode 100644 Build/.keep rename cmake/configs/{config_posix_eagle_default.mk => config_posix_eagle_default.cmake} (93%) diff --git a/Build/.keep b/Build/.keep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/cmake/configs/config_nuttx_sim_simple.cmake b/cmake/configs/config_nuttx_sim_simple.cmake index 0440bfed14..a44f8e9597 100644 --- a/cmake/configs/config_nuttx_sim_simple.cmake +++ b/cmake/configs/config_nuttx_sim_simple.cmake @@ -2,7 +2,7 @@ include(nuttx/px4_impl_nuttx) message(WARNING "this is a work in progress and doesn't build yet") -function(px4_set_config_modules out_module_list) +function(px4_get_config out_module_list) set(config_module_list platforms/nuttx diff --git a/cmake/configs/config_posix_eagle_default.mk b/cmake/configs/config_posix_eagle_default.cmake similarity index 93% rename from cmake/configs/config_posix_eagle_default.mk rename to cmake/configs/config_posix_eagle_default.cmake index 589c44a05e..77b6716e88 100644 --- a/cmake/configs/config_posix_eagle_default.mk +++ b/cmake/configs/config_posix_eagle_default.cmake @@ -1,6 +1,6 @@ include(posix/px4_impl_posix-arm) -function(px4_set_config_modules out_module_list) +function(px4_get_config out_module_list) set(config_module_list drivers/device diff --git a/cmake/configs/config_posix_eagle_hil.cmake b/cmake/configs/config_posix_eagle_hil.cmake index ebe148ab37..fb1c82ddbe 100644 --- a/cmake/configs/config_posix_eagle_hil.cmake +++ b/cmake/configs/config_posix_eagle_hil.cmake @@ -1,6 +1,6 @@ include(posix/px4_impl_posix-arm) -function(px4_set_config_modules out_module_list) +function(px4_get_config out_module_list) set(config_module_list drivers/device diff --git a/cmake/configs/config_posix_eagle_muorb.cmake b/cmake/configs/config_posix_eagle_muorb.cmake index 70235928ec..b8e75586be 100644 --- a/cmake/configs/config_posix_eagle_muorb.cmake +++ b/cmake/configs/config_posix_eagle_muorb.cmake @@ -1,6 +1,6 @@ include(posix/px4_impl_posix-arm) -function(px4_set_config_modules out_module_list) +function(px4_get_config out_module_list) set(config_module_list drivers/device diff --git a/cmake/configs/config_posix_eagle_release.cmake b/cmake/configs/config_posix_eagle_release.cmake index 745fa36826..9b7b315727 100644 --- a/cmake/configs/config_posix_eagle_release.cmake +++ b/cmake/configs/config_posix_eagle_release.cmake @@ -1,6 +1,6 @@ include(posix/px4_impl_posix-arm) -function(px4_set_config_modules out_module_list) +function(px4_get_config out_module_list) set(config_module_list drivers/device diff --git a/cmake/configs/config_qurt_eagle_hello.cmake b/cmake/configs/config_qurt_eagle_hello.cmake index 6da3d11574..38028ff57e 100644 --- a/cmake/configs/config_qurt_eagle_hello.cmake +++ b/cmake/configs/config_qurt_eagle_hello.cmake @@ -1,6 +1,6 @@ include(qurt/px4_impl_qurt) -function(px4_set_config_modules out_module_list) +function(px4_get_config out_module_list) set(config_module_list drivers/device diff --git a/cmake/configs/config_qurt_eagle_hil.cmake b/cmake/configs/config_qurt_eagle_hil.cmake index 5e7e7fc16c..857ad6b570 100644 --- a/cmake/configs/config_qurt_eagle_hil.cmake +++ b/cmake/configs/config_qurt_eagle_hil.cmake @@ -1,6 +1,6 @@ include(qurt/px4_impl_qurt) -function(px4_set_config_modules out_module_list) +function(px4_get_config out_module_list) set(config_module_list drivers/device diff --git a/cmake/configs/config_qurt_eagle_muorb.cmake b/cmake/configs/config_qurt_eagle_muorb.cmake index 5cf884baf1..38618dc2bd 100644 --- a/cmake/configs/config_qurt_eagle_muorb.cmake +++ b/cmake/configs/config_qurt_eagle_muorb.cmake @@ -1,6 +1,6 @@ include(qurt/px4_impl_qurt) -function(px4_set_config_modules out_module_list) +function(px4_get_config out_module_list) set(config_module_list drivers/device diff --git a/cmake/configs/config_qurt_eagle_release.cmake b/cmake/configs/config_qurt_eagle_release.cmake index 3bf19fb16f..5cbd611cdf 100644 --- a/cmake/configs/config_qurt_eagle_release.cmake +++ b/cmake/configs/config_qurt_eagle_release.cmake @@ -19,7 +19,7 @@ set(target_libraries rc_receiver ) -function(px4_set_config_modules out_module_list) +function(px4_get_config out_module_list) set(config_module_list # diff --git a/cmake/configs/config_qurt_eagle_test.cmake b/cmake/configs/config_qurt_eagle_test.cmake index bbb837b363..1845568e8b 100644 --- a/cmake/configs/config_qurt_eagle_test.cmake +++ b/cmake/configs/config_qurt_eagle_test.cmake @@ -1,6 +1,6 @@ include(qurt/px4_impl_qurt) -function(px4_set_config_modules out_module_list) +function(px4_get_config out_module_list) set(config_module_list drivers/device diff --git a/cmake/configs/config_qurt_eagle_travis.cmake b/cmake/configs/config_qurt_eagle_travis.cmake index b8a21017b6..713c858a44 100644 --- a/cmake/configs/config_qurt_eagle_travis.cmake +++ b/cmake/configs/config_qurt_eagle_travis.cmake @@ -3,7 +3,7 @@ include(qurt/px4_impl_qurt) # Run a full link with build stubs to make sure qurt target isn't broken set(QURT_ENABLE_STUBS 1) -function(px4_set_config_modules out_module_list) +function(px4_get_config out_module_list) set(config_module_list drivers/device