mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 12:39:06 +08:00
commit
fdcb8a56a8
30
ports/date/CMakeLists.txt
Normal file
30
ports/date/CMakeLists.txt
Normal file
@ -0,0 +1,30 @@
|
||||
cmake_minimum_required(VERSION 3.5.1)
|
||||
project(tz CXX)
|
||||
|
||||
if(MSVC)
|
||||
add_compile_options(/W3 /wd4005 /wd4996 /wd4018 -D_CRT_SECURE_NO_WARNINGS)
|
||||
endif()
|
||||
|
||||
add_definitions(-DNOMINMAX)
|
||||
|
||||
|
||||
include_directories(".")
|
||||
|
||||
add_library(tz tz.cpp)
|
||||
|
||||
if(BUILD_SHARED_LIBS)
|
||||
target_compile_definitions(tz PRIVATE -DDATE_BUILD_DLL)
|
||||
else()
|
||||
target_compile_definitions(tz PRIVATE -DDATE_BUILD_LIB)
|
||||
endif()
|
||||
|
||||
install(
|
||||
TARGETS tz
|
||||
RUNTIME DESTINATION bin
|
||||
LIBRARY DESTINATION lib
|
||||
ARCHIVE DESTINATION lib
|
||||
)
|
||||
|
||||
if(NOT DISABLE_INSTALL_HEADERS)
|
||||
install(FILES date.h tz.h julian.h iso_week.h islamic.h DESTINATION include)
|
||||
endif()
|
3
ports/date/CONTROL
Normal file
3
ports/date/CONTROL
Normal file
@ -0,0 +1,3 @@
|
||||
Source: date
|
||||
Version: 2.2
|
||||
Description: A date and time library based on the C++11/14/17 <chrono> header
|
38
ports/date/portfile.cmake
Normal file
38
ports/date/portfile.cmake
Normal file
@ -0,0 +1,38 @@
|
||||
include(vcpkg_common_functions)
|
||||
|
||||
message(WARNING
|
||||
"You will need to also install http://unicode.org/repos/cldr/trunk/common/supplemental/windowsZones.xml into your install location"
|
||||
"See https://howardhinnant.github.io/date/tz.html"
|
||||
)
|
||||
|
||||
vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO HowardHinnant/date
|
||||
REF 272d487b3d490126e520b67fe76bbb2e67226c07
|
||||
SHA512 59e8ff642d3eb82cb6116a77d4c5e14bbc2ae6bd4019e64a49609b6e46d679c2cb4ccae74807b72223aed18ae015596193919cdb58b011bfb774ff3e29a1d43b
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
file(COPY ${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt DESTINATION ${SOURCE_PATH})
|
||||
|
||||
vcpkg_configure_cmake(
|
||||
SOURCE_PATH ${SOURCE_PATH}
|
||||
PREFER_NINJA
|
||||
OPTIONS_DEBUG -DDISABLE_INSTALL_HEADERS=ON
|
||||
)
|
||||
|
||||
vcpkg_install_cmake()
|
||||
|
||||
vcpkg_copy_pdbs()
|
||||
|
||||
set(HEADER "${CURRENT_PACKAGES_DIR}/include/tz.h")
|
||||
file(READ "${HEADER}" _contents)
|
||||
if(VCPKG_LIBRARY_LINKAGE STREQUAL dynamic)
|
||||
string(REPLACE "DATE_BUILD_DLL" "1" _contents "${_contents}")
|
||||
else()
|
||||
string(REPLACE "DATE_BUILD_LIB" "1" _contents "${_contents}")
|
||||
endif()
|
||||
file(WRITE "${HEADER}" "${_contents}")
|
||||
|
||||
|
||||
file(INSTALL ${SOURCE_PATH}/LICENSE.txt DESTINATION ${CURRENT_PACKAGES_DIR}/share/date RENAME copyright)
|
Loading…
Reference in New Issue
Block a user