mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-03-06 14:27:43 +00:00
(Windows) Disabled threading support in rlottie since it was unstable when built using MinGW.
This commit is contained in:
parent
29eceedde0
commit
8d648867e1
6
external/CMakeLists.txt
vendored
6
external/CMakeLists.txt
vendored
|
@ -11,5 +11,11 @@ if(NOT WIN32)
|
||||||
set(BUILD_SHARED_LIBS OFF)
|
set(BUILD_SHARED_LIBS OFF)
|
||||||
endif()
|
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)
|
option(LOTTIE_MODULE OFF)
|
||||||
add_subdirectory("rlottie")
|
add_subdirectory("rlottie")
|
||||||
|
|
Loading…
Reference in a new issue