view unicode-config.cmake @ 28:f06312a7432b

cmake: enable tests
author David Demelier <markand@malikania.fr>
date Tue, 07 Feb 2023 14:30:33 +0100
parents 887a8fd73d1e
children
line wrap: on
line source

include("${CMAKE_CURRENT_LIST_DIR}/unicode-targets.cmake")

# Prefer shared version if found.
if (TARGET unicode::libunicode-shared)
	add_library(unicode::libunicode ALIAS unicode::libunicode-shared)
else ()
	add_library(unicode::libunicode ALIAS unicode::libunicode-static)
endif ()