Files
OpenVulkano/3rdParty/utfcpp/CMakeLists.txt

18 lines
369 B
CMake

include(FetchContent)
if(NOT DEFINED UTFCPP_REPO)
set(UTFCPP_REPO https://github.com/nemtrif/utfcpp.git)
endif ()
FetchContent_Declare(
utfcpp
EXCLUDE_FROM_ALL
GIT_REPOSITORY ${UTFCPP_REPO}
GIT_TAG v4.0.1
GIT_SHALLOW TRUE
)
set(UTF8_TESTS OFF)
set(UTF8_INSTALL OFF)
set(UTF8_SAMPLES OFF)
FetchContent_MakeAvailable(utfcpp)