mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 14:15:38 +00:00
(Windows) Fixed an incorrect CMake build flag for rlottie.
This commit is contained in:
parent
1dbfa3f82f
commit
a98dd83c87
4
external/CMakeLists.txt
vendored
4
external/CMakeLists.txt
vendored
|
@ -26,7 +26,9 @@ unset(CMAKE_EXE_LINKER_FLAGS)
|
|||
add_subdirectory(lunasvg)
|
||||
|
||||
# On Windows, rlottie is built as a DLL file.
|
||||
if(NOT WIN32)
|
||||
if (WIN32)
|
||||
set(BUILD_SHARED_LIBS ON)
|
||||
else()
|
||||
set(BUILD_SHARED_LIBS OFF)
|
||||
endif()
|
||||
|
||||
|
|
Loading…
Reference in a new issue