aboutsummaryrefslogtreecommitdiff
path: root/cmake/FindNcursesw.cmake
diff options
context:
space:
mode:
authorPřemysl Janouch <p.janouch@gmail.com>2016-09-28 22:44:59 +0200
committerPřemysl Janouch <p.janouch@gmail.com>2016-10-01 04:41:54 +0200
commitec339eb0ff6bdb1d2feaa538bdeb12ea18eb540c (patch)
treeaacc389689b05bbc872b6978b2916de7e37fd576 /cmake/FindNcursesw.cmake
downloadnncmpp-ec339eb0ff6bdb1d2feaa538bdeb12ea18eb540c.tar.gz
nncmpp-ec339eb0ff6bdb1d2feaa538bdeb12ea18eb540c.tar.xz
nncmpp-ec339eb0ff6bdb1d2feaa538bdeb12ea18eb540c.zip
Initial commit
This is mostly sdtui code ported over from GLib to liberty, with some MPD code from desktop-tools. It tracks the current song and that's it.
Diffstat (limited to 'cmake/FindNcursesw.cmake')
-rw-r--r--cmake/FindNcursesw.cmake17
1 files changed, 17 insertions, 0 deletions
diff --git a/cmake/FindNcursesw.cmake b/cmake/FindNcursesw.cmake
new file mode 100644
index 0000000..88c1d01
--- /dev/null
+++ b/cmake/FindNcursesw.cmake
@@ -0,0 +1,17 @@
+# Public Domain
+
+find_package (PkgConfig REQUIRED)
+pkg_check_modules (NCURSESW QUIET ncursesw)
+
+# OpenBSD doesn't provide a pkg-config file
+set (required_vars NCURSESW_LIBRARIES)
+if (NOT NCURSESW_FOUND)
+ find_library (NCURSESW_LIBRARIES NAMES ncursesw)
+ find_path (NCURSESW_INCLUDE_DIRS ncurses.h)
+ list (APPEND required_vars NCURSESW_INCLUDE_DIRS)
+endif (NOT NCURSESW_FOUND)
+
+include (FindPackageHandleStandardArgs)
+FIND_PACKAGE_HANDLE_STANDARD_ARGS (NCURSESW DEFAULT_MSG ${required_vars})
+
+mark_as_advanced (NCURSESW_LIBRARIES NCURSESW_INCLUDE_DIRS)