mirror of
https://github.com/dankamongmen/notcurses
synced 2025-03-09 17:19:03 -04:00
CMake: defer to PKG_CONFIG_PATH if it exists #1933
This commit is contained in:
parent
cc139d50b1
commit
e638ea09f9
@ -64,7 +64,11 @@ endif()
|
|||||||
if(${CMAKE_SYSTEM_NAME} STREQUAL "Linux")
|
if(${CMAKE_SYSTEM_NAME} STREQUAL "Linux")
|
||||||
set(PKGCONFIG_DIR "${CMAKE_INSTALL_LIBDIR}/pkgconfig")
|
set(PKGCONFIG_DIR "${CMAKE_INSTALL_LIBDIR}/pkgconfig")
|
||||||
elseif(APPLE)
|
elseif(APPLE)
|
||||||
|
# surely there's a better way to do this? alas, seems necessary to pull the
|
||||||
|
# pkg-config files out of Homebrew.
|
||||||
|
if(NOT DEFINED ENV{PKG_CONFIG_PATH})
|
||||||
set(ENV{PKG_CONFIG_PATH} "/usr/local/opt/ncurses/lib/pkgconfig:/usr/local/opt/readline/lib/pkgconfig")
|
set(ENV{PKG_CONFIG_PATH} "/usr/local/opt/ncurses/lib/pkgconfig:/usr/local/opt/readline/lib/pkgconfig")
|
||||||
|
endif()
|
||||||
set(PKGCONFIG_DIR "${CMAKE_INSTALL_LIBDIR}/pkgconfig")
|
set(PKGCONFIG_DIR "${CMAKE_INSTALL_LIBDIR}/pkgconfig")
|
||||||
else()
|
else()
|
||||||
set(PKGCONFIG_DIR "${CMAKE_INSTALL_PREFIX}/libdata/pkgconfig")
|
set(PKGCONFIG_DIR "${CMAKE_INSTALL_PREFIX}/libdata/pkgconfig")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user