mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 14:15:38 +00:00
Fixed an issue where rlottie was built as a shared library on Unix and macOS.
This commit is contained in:
parent
c7a035127c
commit
f7d72b4176
7
external/CMakeLists.txt
vendored
7
external/CMakeLists.txt
vendored
|
@ -32,11 +32,12 @@ if(WIN32)
|
|||
# Strip the DLL files when building with MinGW.
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -s")
|
||||
endif()
|
||||
if (WIN32)
|
||||
endif()
|
||||
|
||||
if (WIN32)
|
||||
set(BUILD_SHARED_LIBS ON)
|
||||
else()
|
||||
else()
|
||||
set(BUILD_SHARED_LIBS OFF)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
# Disable threading support for rlottie as this functionality actually leads to far worse
|
||||
|
|
Loading…
Reference in a new issue