From 3a93cdc105ef9680eaed1e375e1bb87722d40b89 Mon Sep 17 00:00:00 2001 From: Jakob Meier Date: Mon, 27 Jun 2022 13:53:38 +0200 Subject: [PATCH] add thermal controller for hosted build --- bsp_hosted/ObjectFactory.cpp | 2 +- mission/controller/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bsp_hosted/ObjectFactory.cpp b/bsp_hosted/ObjectFactory.cpp index 3538700c..8129790c 100644 --- a/bsp_hosted/ObjectFactory.cpp +++ b/bsp_hosted/ObjectFactory.cpp @@ -4,7 +4,7 @@ #include #include #include -#include +#include #include #include #include diff --git a/mission/controller/CMakeLists.txt b/mission/controller/CMakeLists.txt index cdcd8ddd..816a560a 100644 --- a/mission/controller/CMakeLists.txt +++ b/mission/controller/CMakeLists.txt @@ -1,3 +1,3 @@ -if(TGT_BSP MATCHES "arm/q7s") +if(TGT_BSP MATCHES "arm/q7s" OR TGT_BSP MATCHES "") target_sources(${LIB_EIVE_MISSION} PRIVATE ThermalController.cpp) endif()