From 17283175448c58530a4648c3d576c1bf65e65a06 Mon Sep 17 00:00:00 2001 From: Reinhold Gschweicher Date: Sun, 20 Feb 2022 15:51:54 +0100 Subject: [PATCH] cmake: add SystemMonitor.cpp https://github.com/InfiniTimeOrg/InfiniTime/pull/967 splits SystemMonitor.h into a h and cpp file. Add the cpp file to the infinisim target. --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4c60546..7927d3c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -183,6 +183,8 @@ target_sources(infinisim PUBLIC ${InfiniTime_DIR}/src/touchhandler/TouchHandler.cpp ${InfiniTime_DIR}/src/systemtask/SystemTask.h ${InfiniTime_DIR}/src/systemtask/SystemTask.cpp + ${InfiniTime_DIR}/src/systemtask/SystemMonitor.h + ${InfiniTime_DIR}/src/systemtask/SystemMonitor.cpp )