CMake: Do not look for fctix on Apple

This commit is contained in:
Jonathan G Rennison
2020-12-11 22:29:27 +00:00
parent a64b4c794c
commit bad2cd0677

View File

@@ -74,12 +74,15 @@ if (UNIX)
find_package(SelfDbg)
find_package(Ucontext)
find_package(BFD)
endif (UNIX)
if(UNIX AND NOT APPLE)
find_package(Fcitx)
if (Fcitx_FOUND)
find_package(DBus1)
find_package(X11)
endif(Fcitx_FOUND)
endif (UNIX)
endif()
if (MINGW)
find_package(Demangle)