diff options
author | Přemysl Janouch <p.janouch@gmail.com> | 2016-12-27 15:26:51 +0100 |
---|---|---|
committer | Přemysl Janouch <p.janouch@gmail.com> | 2016-12-29 16:48:56 +0100 |
commit | d0eee678b59c703cec15431b66cfcac9e5741815 (patch) | |
tree | 33943c9a9599b4566ddacac9094cc8c73743c5df /cmake | |
download | hex-d0eee678b59c703cec15431b66cfcac9e5741815.tar.gz hex-d0eee678b59c703cec15431b66cfcac9e5741815.tar.xz hex-d0eee678b59c703cec15431b66cfcac9e5741815.zip |
Initial commit
This is essentially a gutted fork of nncmpp that doesn't do anything.
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/FindNcursesw.cmake | 17 | ||||
-rw-r--r-- | cmake/FindUnistring.cmake | 10 |
2 files changed, 27 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) diff --git a/cmake/FindUnistring.cmake b/cmake/FindUnistring.cmake new file mode 100644 index 0000000..6b74efb --- /dev/null +++ b/cmake/FindUnistring.cmake @@ -0,0 +1,10 @@ +# Public Domain + +find_path (UNISTRING_INCLUDE_DIRS unistr.h) +find_library (UNISTRING_LIBRARIES NAMES unistring libunistring) + +include (FindPackageHandleStandardArgs) +FIND_PACKAGE_HANDLE_STANDARD_ARGS (UNISTRING DEFAULT_MSG + UNISTRING_INCLUDE_DIRS UNISTRING_LIBRARIES) + +mark_as_advanced (UNISTRING_LIBRARIES UNISTRING_INCLUDE_DIRS) |