aboutsummaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorPřemysl Janouch <p.janouch@gmail.com>2017-01-23 23:18:55 +0100
committerPřemysl Janouch <p.janouch@gmail.com>2017-01-23 23:18:55 +0100
commit6d81ea596bebc41466a697c431481d6b862e9e1a (patch)
treeba435a5a616df12000439ee292f10a6d7e440497 /cmake
parentfccfd1dd3b3e256db8759cfd6dba7cf6c3952e37 (diff)
downloadhex-6d81ea596bebc41466a697c431481d6b862e9e1a.tar.gz
hex-6d81ea596bebc41466a697c431481d6b862e9e1a.tar.xz
hex-6d81ea596bebc41466a697c431481d6b862e9e1a.zip
Bump liberty
Lots of stuff has been moved into it etc.
Diffstat (limited to 'cmake')
-rw-r--r--cmake/FindNcursesw.cmake17
-rw-r--r--cmake/FindUnistring.cmake10
2 files changed, 0 insertions, 27 deletions
diff --git a/cmake/FindNcursesw.cmake b/cmake/FindNcursesw.cmake
deleted file mode 100644
index 88c1d01..0000000
--- a/cmake/FindNcursesw.cmake
+++ /dev/null
@@ -1,17 +0,0 @@
-# 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
deleted file mode 100644
index 6b74efb..0000000
--- a/cmake/FindUnistring.cmake
+++ /dev/null
@@ -1,10 +0,0 @@
-# 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)