From 995e3676f3e837407b467da6b016f30166636fa0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A5kon=20=C3=98ye=20Amundsen?= Date: Fri, 17 Jan 2020 14:03:11 +0000 Subject: [PATCH] cmake: allow appending dependencies to report targets MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit To facilitate extending the generated reports without having to patch this file, leverage generator-expression so that dependencies can be added to the 'zephyr_property_target' target. Signed-off-by: Håkon Øye Amundsen --- cmake/reports/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/cmake/reports/CMakeLists.txt b/cmake/reports/CMakeLists.txt index 7c2140dc828..53068587c5b 100644 --- a/cmake/reports/CMakeLists.txt +++ b/cmake/reports/CMakeLists.txt @@ -14,5 +14,6 @@ foreach(report ram_report rom_report) --nm ${CMAKE_NM} -o ${PROJECT_BINARY_DIR} DEPENDS ${logical_target_for_zephyr_elf} + $ ) endforeach()