From 7f93ce374db467e725b91a0a2b69e9f010070699 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Fri, 14 Jun 2019 17:41:20 -0400 Subject: [PATCH] Core/CMakeLists: Privately link in fmt While we do have this library as part of the public linkage interface in the common library target, which will be used in the future for the logging macros, we should still be explicit that we're using this library. Therefore, we privately link it in to be explicit about it. --- Source/Core/Core/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Core/Core/CMakeLists.txt b/Source/Core/Core/CMakeLists.txt index bbdd8b0c79..1034351992 100644 --- a/Source/Core/Core/CMakeLists.txt +++ b/Source/Core/Core/CMakeLists.txt @@ -557,6 +557,7 @@ PUBLIC videovulkan PRIVATE + fmt::fmt ${LZO} ZLIB::ZLIB )