mirror of
https://github.com/pineappleEA/pineapple-src.git
synced 2024-12-02 02:48:25 -05:00
14 lines
246 B
CMake
14 lines
246 B
CMake
|
include(CMakeFindDependencyMacro)
|
||
|
|
||
|
find_dependency(SDL2 CONFIG)
|
||
|
|
||
|
if(@USE_WEBP@)
|
||
|
find_dependency(WebP CONFIG)
|
||
|
endif()
|
||
|
|
||
|
if (@USE_PNG@)
|
||
|
find_dependency(PNG)
|
||
|
endif()
|
||
|
|
||
|
include("${CMAKE_CURRENT_LIST_DIR}/sdl2-image-targets.cmake")
|