From 66a3b3e259e8d46a046b3b4b9a9253dd3e2a394e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Eric=20Janouch?= Date: Tue, 2 Nov 2021 16:25:48 +0100 Subject: CMakeLists.txt: fix macOS build GTK+ doesn't seem to be working much on macOS/brew/M1, though. --- CMakeLists.txt | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c37b063..e14bd8b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -68,9 +68,11 @@ endif () # Dependencies find_package (PkgConfig REQUIRED) pkg_check_modules (GTK3 REQUIRED gtk+-3.0 json-glib-1.0) +link_directories (${GTK3_LIBRARY_DIRS}) if (NOT WIN32) pkg_search_module (Lua REQUIRED lua>=5.2 lua5.3 lua-5.3 lua5.2 lua-5.2) + link_directories (${Lua_LIBRARY_DIRS}) else () # For whatever reason this now seems to be required set (LUA_INCLUDE_DIR "${WIN32_DEPENDS_PATH}/include") @@ -83,9 +85,6 @@ else () set (Lua_INCLUDE_DIRS ${LUA_INCLUDE_DIR}) endif () -# This actually fucks up MinGW cross-compilation if omitted -link_directories (${GTK3_LIBRARY_DIRS}) - # Localization find_package (Gettext REQUIRED) file (GLOB project_PO_FILES ${PROJECT_SOURCE_DIR}/po/*.po) -- cgit v1.2.3