2020-02-24 21:38:16 +00:00
|
|
|
#
|
|
|
|
# tuklib_mbstr.cmake - see tuklib_mbstr.m4 for description and comments
|
|
|
|
#
|
|
|
|
# Author: Lasse Collin
|
|
|
|
#
|
|
|
|
# This file has been put into the public domain.
|
|
|
|
# You can do whatever you want with this file.
|
|
|
|
#
|
|
|
|
|
2020-02-25 18:42:31 +00:00
|
|
|
include("${CMAKE_CURRENT_LIST_DIR}/tuklib_common.cmake")
|
2020-02-24 21:38:16 +00:00
|
|
|
include(CheckSymbolExists)
|
|
|
|
|
|
|
|
function(tuklib_mbstr TARGET_OR_ALL)
|
|
|
|
check_symbol_exists(mbrtowc wchar.h HAVE_MBRTOWC)
|
2020-02-25 18:42:31 +00:00
|
|
|
tuklib_add_definition_if("${TARGET_OR_ALL}" HAVE_MBRTOWC)
|
2020-02-24 21:38:16 +00:00
|
|
|
|
|
|
|
# NOTE: wcwidth() requires _GNU_SOURCE or _XOPEN_SOURCE on GNU/Linux.
|
|
|
|
check_symbol_exists(wcwidth wchar.h HAVE_WCWIDTH)
|
2020-02-25 18:42:31 +00:00
|
|
|
tuklib_add_definition_if("${TARGET_OR_ALL}" HAVE_WCWIDTH)
|
2020-02-24 21:38:16 +00:00
|
|
|
endfunction()
|