From 3de04cf6f414c92a818e7a128f13766bdd17dedb Mon Sep 17 00:00:00 2001 From: Mark Charlebois Date: Thu, 10 Sep 2015 20:17:38 -0700 Subject: [PATCH] cmake: fixes for posix configs The posix eagle targets were fixed to include the px4_impl_posix.cmake file Signed-off-by: Mark Charlebois --- cmake/configs/posix_eagle_default.cmake | 2 +- cmake/configs/posix_eagle_hil.cmake | 2 +- cmake/configs/posix_eagle_release.cmake | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cmake/configs/posix_eagle_default.cmake b/cmake/configs/posix_eagle_default.cmake index 228b4e50ae..17fcc337ff 100644 --- a/cmake/configs/posix_eagle_default.cmake +++ b/cmake/configs/posix_eagle_default.cmake @@ -1,4 +1,4 @@ -include(posix/px4_impl_posix-arm) +include(posix/px4_impl_posix) set(USE_TOOLCHAIN Toolchain-arm-linux-gnueabihf) diff --git a/cmake/configs/posix_eagle_hil.cmake b/cmake/configs/posix_eagle_hil.cmake index af3785f5c7..aa87bd6bb6 100644 --- a/cmake/configs/posix_eagle_hil.cmake +++ b/cmake/configs/posix_eagle_hil.cmake @@ -1,4 +1,4 @@ -include(posix/px4_impl_posix-arm) +include(posix/px4_impl_posix) set(USE_TOOLCHAIN Toolchain-arm-linux-gnueabihf) diff --git a/cmake/configs/posix_eagle_release.cmake b/cmake/configs/posix_eagle_release.cmake index cc220cb306..fad14f595f 100644 --- a/cmake/configs/posix_eagle_release.cmake +++ b/cmake/configs/posix_eagle_release.cmake @@ -1,4 +1,4 @@ -include(posix/px4_impl_posix-arm) +include(posix/px4_impl_posix) set(USE_TOOLCHAIN Toolchain-arm-linux-gnueabihf)