mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-01-17 22:55:38 +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)
|
||||
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")
|
||||
|
|
Loading…
Reference in a new issue