vcpkg/ports/date/CMakeLists.txt

29 lines
624 B
CMake
Raw Normal View History

2017-08-15 12:47:23 -07:00
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()
2017-08-31 16:06:18 -07:00
add_definitions(-DNOMINMAX)
2017-08-15 12:47:23 -07:00
2017-11-17 15:46:20 -08:00
include_directories("./include")
2017-08-15 12:47:23 -07:00
2017-11-17 15:46:20 -08:00
add_library(tz src/tz.cpp)
2017-08-15 12:47:23 -07:00
2017-08-31 16:06:18 -07:00
if(BUILD_SHARED_LIBS)
target_compile_definitions(tz PRIVATE -DDATE_BUILD_DLL)
endif()
2017-08-15 12:47:23 -07:00
install(
TARGETS tz
RUNTIME DESTINATION bin
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib
)
if(NOT DISABLE_INSTALL_HEADERS)
2017-11-17 15:46:20 -08:00
install(FILES include/date/date.h include/date/tz.h include/date/julian.h include/date/iso_week.h include/date/islamic.h DESTINATION include/date)
2017-08-15 12:47:23 -07:00
endif()