mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 01:59:00 +08:00
635361d801
* Update to 5.2.1 * Modernize portfile * Enable shared lib * Handle system reallocarray * x-add-version * Disable GifDrawBoxedText8x8 on windows * Update git-tree * Add separate patch for GifDrawBoxedText8x8 * Update git-tree
45 lines
905 B
CMake
45 lines
905 B
CMake
cmake_minimum_required(VERSION 3.4)
|
|
|
|
project(giflib C)
|
|
|
|
set(GIFLIB_EXPORTS "NOTFOUND" CACHE FILEPATH "The path of the DEF file listing the DLL exports.")
|
|
|
|
set(GIFLIB_HEADERS
|
|
gif_lib.h
|
|
)
|
|
|
|
set(GIFLIB_SOURCES
|
|
dgif_lib.c
|
|
egif_lib.c
|
|
gifalloc.c
|
|
gif_err.c
|
|
gif_font.c
|
|
gif_hash.c
|
|
openbsd-reallocarray.c
|
|
)
|
|
|
|
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
|
|
|
|
include(CheckSymbolExists)
|
|
check_symbol_exists(reallocarray "stdlib.h" HAVE_REALLOCARRAY)
|
|
if(HAVE_REALLOCARRAY)
|
|
add_definitions(-DHAVE_REALLOCARRAY)
|
|
endif()
|
|
|
|
add_library(gif ${GIFLIB_SOURCES})
|
|
if(BUILD_SHARED_LIBS AND WIN32)
|
|
target_sources(gif PRIVATE "${GIFLIB_EXPORTS}")
|
|
else()
|
|
set(UNUSED "${GIFLIB_EXPORTS}")
|
|
endif()
|
|
|
|
if (NOT GIFLIB_SKIP_HEADERS)
|
|
install(FILES ${GIFLIB_HEADERS} DESTINATION include)
|
|
endif ()
|
|
|
|
install(TARGETS gif
|
|
RUNTIME DESTINATION bin
|
|
LIBRARY DESTINATION lib
|
|
ARCHIVE DESTINATION lib
|
|
)
|