mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-26 13:38:59 +08:00
c0c7d23949
* [sdl2-image] Fix dependency libpng * version * add license * version
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")
|