mirror of
https://github.com/webmproject/libwebp.git
synced 2025-04-04 16:06:49 +02:00
Build vwebp from CMake.
Change-Id: I428fd563964a72d58bee75e651c581fbbdb0eb26
This commit is contained in:
parent
d77bf512bd
commit
b0c966fb66
@ -8,6 +8,7 @@ option(WEBP_BUILD_CWEBP "Build the cwebp command line tool." ON)
|
|||||||
option(WEBP_BUILD_DWEBP "Build the dwebp command line tool." ON)
|
option(WEBP_BUILD_DWEBP "Build the dwebp command line tool." ON)
|
||||||
option(WEBP_BUILD_GIF2WEBP "Build the gif2webp conversion tool." ON)
|
option(WEBP_BUILD_GIF2WEBP "Build the gif2webp conversion tool." ON)
|
||||||
option(WEBP_BUILD_IMG2WEBP "Build the img2webp animation tool." ON)
|
option(WEBP_BUILD_IMG2WEBP "Build the img2webp animation tool." ON)
|
||||||
|
option(WEBP_BUILD_VWEBP "Build the vwebp viewer tool." ON)
|
||||||
option(WEBP_BUILD_WEBPINFO "Build the webpinfo command line tool." ON)
|
option(WEBP_BUILD_WEBPINFO "Build the webpinfo command line tool." ON)
|
||||||
option(WEBP_BUILD_WEBP_JS "Emscripten build of webp.js." OFF)
|
option(WEBP_BUILD_WEBP_JS "Emscripten build of webp.js." OFF)
|
||||||
option(WEBP_NEAR_LOSSLESS "Enable near-lossless encoding" ON)
|
option(WEBP_NEAR_LOSSLESS "Enable near-lossless encoding" ON)
|
||||||
@ -230,8 +231,8 @@ foreach(I_FILE RANGE ${WEBP_SIMD_FILES_TO_INCLUDE_RANGE})
|
|||||||
endforeach()
|
endforeach()
|
||||||
|
|
||||||
# Build the executables if asked for.
|
# Build the executables if asked for.
|
||||||
if(WEBP_BUILD_CWEBP OR WEBP_BUILD_DWEBP OR
|
if(WEBP_BUILD_CWEBP OR WEBP_BUILD_DWEBP OR WEBP_BUILD_GIF2WEBP OR
|
||||||
WEBP_BUILD_GIF2WEBP OR WEBP_BUILD_IMG2WEBP OR WEBP_BUILD_WEBP_JS)
|
WEBP_BUILD_IMG2WEBP OR WEBP_BUILD_VWEBP OR WEBP_BUILD_WEBP_JS)
|
||||||
# Example utility library.
|
# Example utility library.
|
||||||
parse_Makefile_am(${CMAKE_CURRENT_SOURCE_DIR}/examples "EXAMPLEUTIL_SRCS"
|
parse_Makefile_am(${CMAKE_CURRENT_SOURCE_DIR}/examples "EXAMPLEUTIL_SRCS"
|
||||||
"example_util_[^ ]*")
|
"example_util_[^ ]*")
|
||||||
@ -329,6 +330,22 @@ if(WEBP_BUILD_IMG2WEBP)
|
|||||||
install(TARGETS img2webp RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
|
install(TARGETS img2webp RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
if(WEBP_BUILD_VWEBP)
|
||||||
|
# vwebp
|
||||||
|
find_package(GLUT)
|
||||||
|
if(GLUT_FOUND)
|
||||||
|
include_directories(${WEBP_DEP_IMG_INCLUDE_DIRS})
|
||||||
|
parse_Makefile_am(${CMAKE_CURRENT_SOURCE_DIR}/examples "VWEBP_SRCS"
|
||||||
|
"vwebp")
|
||||||
|
add_executable(vwebp ${VWEBP_SRCS})
|
||||||
|
target_link_libraries(vwebp ${OPENGL_LIBRARIES} exampleutil GLUT::GLUT
|
||||||
|
imageioutil webp webpdemux)
|
||||||
|
target_include_directories(vwebp PRIVATE GLUT::GLUT
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}/src ${OPENGL_INCLUDE_DIR})
|
||||||
|
install(TARGETS vwebp RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
if (WEBP_BUILD_WEBPINFO)
|
if (WEBP_BUILD_WEBPINFO)
|
||||||
# webpinfo
|
# webpinfo
|
||||||
include_directories(${WEBP_DEP_IMG_INCLUDE_DIRS})
|
include_directories(${WEBP_DEP_IMG_INCLUDE_DIRS})
|
||||||
|
@ -51,10 +51,8 @@ set(WEBP_USE_THREAD ${Threads_FOUND})
|
|||||||
set(LT_OBJDIR ".libs/")
|
set(LT_OBJDIR ".libs/")
|
||||||
|
|
||||||
# Only useful for vwebp, so useless for now.
|
# Only useful for vwebp, so useless for now.
|
||||||
# find_package(OpenGL)
|
find_package(OpenGL)
|
||||||
# set(WEBP_HAVE_GL ${OPENGL_FOUND})
|
set(WEBP_HAVE_GL ${OPENGL_FOUND})
|
||||||
# set(WEBP_DEP_INCLUDE_DIRS ${WEBP_DEP_INCLUDE_DIRS} ${OPENGL_INCLUDE_DIRS})
|
|
||||||
# set(WEBP_DEP_LIBRARIES ${WEBP_DEP_LIBRARIES} ${OPENGL_LIBRARIES})
|
|
||||||
|
|
||||||
# Find the standard C math library.
|
# Find the standard C math library.
|
||||||
find_library(MATH_LIBRARY NAMES m)
|
find_library(MATH_LIBRARY NAMES m)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user