From 87a57a5584ce3036c9d0c068fb5daad5ab26058e Mon Sep 17 00:00:00 2001 From: Lioncash Date: Wed, 29 May 2019 05:22:45 -0400 Subject: [PATCH] UpdaterCommon/CMakeLists: Specify headers in target sources --- Source/Core/UpdaterCommon/CMakeLists.txt | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/Source/Core/UpdaterCommon/CMakeLists.txt b/Source/Core/UpdaterCommon/CMakeLists.txt index 8a98814e4d..0b11e10eed 100644 --- a/Source/Core/UpdaterCommon/CMakeLists.txt +++ b/Source/Core/UpdaterCommon/CMakeLists.txt @@ -1,9 +1,13 @@ add_library(updatercommon - UpdaterCommon.cpp) - + UI.h + UpdaterCommon.cpp + UpdaterCommon.h +) + target_link_libraries(updatercommon PRIVATE uicommon mbedtls z ed25519 - cpp-optparse) \ No newline at end of file + cpp-optparse +) \ No newline at end of file