Added explicit Manjaro detection for -DNO_CURSESW.

This commit is contained in:
casey langen 2017-07-29 17:08:59 -07:00
parent 641b430b01
commit 4bb1326ad8

View File

@ -80,7 +80,7 @@ if (CMAKE_SYSTEM_NAME MATCHES "Darwin")
include_directories("/usr/local/include")
endif ()
if (EXISTS "/etc/arch-release" OR NO_NCURSESW)
if (EXISTS "/etc/arch-release" OR EXISTS "/etc/manjaro-release" OR NO_NCURSESW)
add_definitions (-DNO_NCURSESW)
endif()