vcpkg/ports/modp-base64/CMakeLists.txt
JonLiu1993 5f3345eb81
[modp-base64] Add missing header files (#29062)
* [modp-base64] Add missing header files

* update vcpkg.json

* update version

* add license

* update version

* update CMakeLists.txt

* update version

* remove blank line

* update version
2023-01-20 22:13:43 -08:00

31 lines
745 B
CMake

cmake_minimum_required(VERSION 3.8)
project(libmodpbase64 C)
if(MSVC)
add_compile_options(/wd4005 /wd4996 /wd4018 -D_CRT_SECURE_NO_WARNINGS)
endif()
configure_file(config.h.cmake config.h @ONLY)
include_directories(. ${SOURCE_PATH}/src ${CMAKE_CURRENT_BINARY_DIR})
add_library(libmodpbase64 ${SOURCE_PATH}/src/modp_b64.c libmodpbase64.def)
install(
TARGETS libmodpbase64
RUNTIME DESTINATION bin
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib
)
if(NOT DISABLE_INSTALL_HEADERS)
install(
FILES
"${SOURCE_PATH}/src/extern_c_begin.h"
"${SOURCE_PATH}/src/extern_c_end.h"
"${SOURCE_PATH}/src/modp_b64.h"
"${SOURCE_PATH}/src/modp_stdint.h"
DESTINATION include
)
endif()