You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
535 B
22 lines
535 B
if(TARGET gif_h::gif_h)
|
|
return()
|
|
endif()
|
|
|
|
message(STATUS "Third-party: creating target 'gif_h::gif_h'")
|
|
|
|
include(FetchContent)
|
|
FetchContent_Declare(
|
|
gif_h
|
|
GIT_REPOSITORY https://github.com/charlietangora/gif-h.git
|
|
GIT_TAG 3d2657b9ad40aac9fd6f75ad079335856e94d664
|
|
GIT_SHALLOW FALSE
|
|
)
|
|
|
|
FetchContent_GetProperties(gif_h)
|
|
if(NOT gif_h_POPULATED)
|
|
FetchContent_Populate(gif_h)
|
|
endif()
|
|
|
|
add_library(gif_h INTERFACE)
|
|
target_include_directories(gif_h INTERFACE ${gif_h_SOURCE_DIR})
|
|
add_library(gif_h::gif_h ALIAS gif_h)
|
|
|