(Windows) Disabled threading support in rlottie since it was unstable when built using MinGW.

This commit is contained in:
Leon Styhre 2022-01-07 22:51:14 +01:00
parent 29eceedde0
commit 8d648867e1

View file

@ -11,5 +11,11 @@ if(NOT WIN32)
set(BUILD_SHARED_LIBS OFF)
endif()
# There is a bug that makes rlottie hang forever on application shutdown if compiled using MinGW
# with threading support enabled. Disable it for MSVC as well to keep the behavior consistent.
if(WIN32)
option(LOTTIE_THREAD OFF)
endif()
option(LOTTIE_MODULE OFF)
add_subdirectory("rlottie")