summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorAdmiral H. Curtiss <pikachu025@gmail.com>2024-05-21 22:36:56 +0200
committerGitHub <noreply@github.com>2024-05-21 22:36:56 +0200
commitc8ea116658ab814751c514d9062d694547bf3a6d (patch)
tree1d2987006fd01f3768cf14c794380fe90bd0ab79 /CMakeLists.txt
parent2ba6093b30eb9fcc9ab4ec2808ed68ff6eb43ba9 (diff)
parentd619307a6d138270622aa756a2f006d03c53b301 (diff)
Merge pull request #12768 from guijan/fmt-pc
use pkg-config to find libfmt
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index a1bfd5ad4b..9044ffa260 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -628,7 +628,9 @@ if (_M_X86_64)
endif()
add_subdirectory(Externals/cpp-optparse)
-dolphin_find_optional_system_library(fmt Externals/fmt 10.1)
+dolphin_find_optional_system_library_pkgconfig(FMT
+ fmt>=10.1 fmt::fmt Externals/fmt
+)
add_subdirectory(Externals/imgui)
add_subdirectory(Externals/implot)