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")
|