mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-02-16 20:15:38 +00:00
22 lines
562 B
CMake
22 lines
562 B
CMake
# SPDX-License-Identifier: MIT
|
|
#
|
|
# EmulationStation Desktop Edition
|
|
# CMakeLists.txt (external)
|
|
#
|
|
# CMake configuration for bundled dependencies built in-tree.
|
|
#
|
|
|
|
# On Windows, rlottie is built as a DLL file.
|
|
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")
|