Disable ICU on non-Linux systems #8530

This commit is contained in:
Alexey Milovidov 2020-01-05 23:43:14 +03:00
parent 00ba767f5d
commit 31e4dc0e08

View File

@ -1,4 +1,8 @@
option(ENABLE_ICU "Enable ICU" ${ENABLE_LIBRARIES})
if (OS_LINUX)
option(ENABLE_ICU "Enable ICU" ${ENABLE_LIBRARIES})
else ()
option(ENABLE_ICU "Enable ICU" 0)
endif ()
if (ENABLE_ICU)