mirror of
https://github.com/webmproject/libwebp.git
synced 2024-11-20 04:18:26 +01:00
adbe2cb17e
using the defaults present in 0.6.13 and setting --first-comment-is-literal to avoid reflowing the copyright block and --max-subgroups-hwrap 3 (default is 2) to avoid making some short set() statements multi-line. Change-Id: I3d90c025b5b2bb353046f4da19b8e442a044b902
19 lines
486 B
CMake
19 lines
486 B
CMake
set(WebP_VERSION @PROJECT_VERSION@)
|
|
set(WEBP_VERSION ${WebP_VERSION})
|
|
|
|
@PACKAGE_INIT@
|
|
|
|
if(@WEBP_USE_THREAD@)
|
|
include(CMakeFindDependencyMacro)
|
|
find_dependency(Threads REQUIRED)
|
|
endif()
|
|
|
|
include("${CMAKE_CURRENT_LIST_DIR}/@PROJECT_NAME@Targets.cmake")
|
|
|
|
set_and_check(WebP_INCLUDE_DIR "@PACKAGE_CMAKE_INSTALL_INCLUDEDIR@")
|
|
set(WEBP_INCLUDE_DIRS ${WebP_INCLUDE_DIRS})
|
|
set(WebP_LIBRARIES "@INSTALLED_LIBRARIES@")
|
|
set(WEBP_LIBRARIES "${WebP_LIBRARIES}")
|
|
|
|
check_required_components(WebP)
|