mirror of
https://github.com/clangen/musikcube.git
synced 2024-11-19 11:10:52 +00:00
Merge pull request #531 from afh/afh-detect-darwin-nixpkgs
Detect Nixpkgs on Darwin and avoid linking statically against ncurses
This commit is contained in:
commit
9077bb9fa6
@ -98,9 +98,11 @@ else()
|
||||
endif()
|
||||
|
||||
if (APPLE)
|
||||
if (NOT DEFINED ENV{NIX_CC})
|
||||
message(STATUS "[ncurses] detected Darwin, linking statically")
|
||||
set(CURSES_LIBRARY_NAME "lib${CURSES_LIBRARY_NAME}.a")
|
||||
set(PANEL_LIBRARY_NAME "lib${PANEL_LIBRARY_NAME}.a")
|
||||
endif()
|
||||
else()
|
||||
message(STATUS "[ncurses] not Darwin! will attempt to link against libtinfo")
|
||||
find_library(LIBTINFO NAMES tinfo)
|
||||
|
Loading…
Reference in New Issue
Block a user