Add a library with TUI helpers

This commit is contained in:
2017-01-23 22:55:46 +01:00
parent 973a4b7656
commit 680980632d
3 changed files with 301 additions and 0 deletions

10
cmake/FindUnistring.cmake Normal file
View File

@@ -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)