mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-03 11:32:43 +01:00
CMakeLists: Add flag to disable usage of shared libpng
This commit is contained in:
parent
df22439826
commit
2648837d8c
@ -57,6 +57,7 @@ if(NOT ANDROID)
|
|||||||
endif()
|
endif()
|
||||||
|
|
||||||
option(USE_SHARED_ENET "Use shared libenet if found rather than Dolphin's soon-to-compatibly-diverge version" OFF)
|
option(USE_SHARED_ENET "Use shared libenet if found rather than Dolphin's soon-to-compatibly-diverge version" OFF)
|
||||||
|
option(USE_SHARED_LIBPNG "Use shared libpng if found" ON)
|
||||||
option(USE_UPNP "Enables UPnP port mapping support" ON)
|
option(USE_UPNP "Enables UPnP port mapping support" ON)
|
||||||
option(ENABLE_NOGUI "Enable NoGUI frontend" ON)
|
option(ENABLE_NOGUI "Enable NoGUI frontend" ON)
|
||||||
option(ENABLE_QT "Enable Qt (Default)" ON)
|
option(ENABLE_QT "Enable Qt (Default)" ON)
|
||||||
@ -413,6 +414,9 @@ if(CMAKE_SYSTEM_NAME MATCHES "Darwin")
|
|||||||
find_library(IOB_LIBRARY IOBluetooth)
|
find_library(IOB_LIBRARY IOBluetooth)
|
||||||
find_library(IOK_LIBRARY IOKit)
|
find_library(IOK_LIBRARY IOKit)
|
||||||
find_library(OPENGL_LIBRARY OpenGL)
|
find_library(OPENGL_LIBRARY OpenGL)
|
||||||
|
|
||||||
|
# We don't want to use shared libpng.
|
||||||
|
set(USE_SHARED_LIBPNG OFF)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(ENABLE_LTO)
|
if(ENABLE_LTO)
|
||||||
@ -786,7 +790,7 @@ else()
|
|||||||
set(LZO lzo2)
|
set(LZO lzo2)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(NOT APPLE)
|
if(USE_SHARED_LIBPNG)
|
||||||
check_lib(PNG libpng png png.h QUIET)
|
check_lib(PNG libpng png png.h QUIET)
|
||||||
endif()
|
endif()
|
||||||
if (PNG_FOUND)
|
if (PNG_FOUND)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user