CMakeLists.txt: fix macOS build

GTK+ doesn't seem to be working much on macOS/brew/M1, though.
This commit is contained in:
Přemysl Eric Janouch 2021-11-02 16:25:48 +01:00
parent 3ff0f117f9
commit 66a3b3e259
Signed by: p
GPG Key ID: A0420B94F92B9493
1 changed files with 2 additions and 3 deletions

View File

@ -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)