From 04c050f93ed1ea60409f53bea96a1790245851e0 Mon Sep 17 00:00:00 2001 From: Dan Villiom Podlaski Christiansen Date: Thu, 4 Jun 2020 09:48:59 +0200 Subject: Fix: don't use ICU on macOS --- CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 825ba3dcd..675246f5e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -40,7 +40,9 @@ if (NOT WIN32) find_package(Fluidsynth) find_package(Freetype) find_package(Fontconfig) - find_package(ICU OPTIONAL_COMPONENTS i18n lx) + if (NOT APPLE) + find_package(ICU OPTIONAL_COMPONENTS i18n lx) + endif (NOT APPLE) find_package(XDG_basedir) endif (NOT WIN32) if (APPLE) -- cgit v1.2.3-54-g00ecf