mirror of
https://github.com/HowardHinnant/date.git
synced 2024-12-27 00:14:07 +08:00
build: use standard CMAKE_INSTALL_INCLUDEDIR
for header install folder.
This gives user control over which folder header should be installed to instead of using hardcoded value `include/`. Variable `CMAKE_INSTALL_INCLUDEDIR` is provided after a call to `include(GNUInstallDirs)` More info can be found about usage in docs: https://cmake.org/cmake/help/latest/command/install.html
This commit is contained in:
parent
cf8f25b183
commit
3286289bf6
@ -68,10 +68,10 @@ add_library( date INTERFACE )
|
|||||||
add_library( date::date ALIAS date )
|
add_library( date::date ALIAS date )
|
||||||
target_include_directories( date INTERFACE
|
target_include_directories( date INTERFACE
|
||||||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
|
||||||
$<INSTALL_INTERFACE:include> )
|
$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}> )
|
||||||
# adding header sources just helps IDEs
|
# adding header sources just helps IDEs
|
||||||
target_sources( date INTERFACE
|
target_sources( date INTERFACE
|
||||||
$<BUILD_INTERFACE:${CMAKE_CURRENT_LIST_DIR}/include>$<INSTALL_INTERFACE:include>/date/date.h
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_LIST_DIR}/include>$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}>/date/date.h
|
||||||
# the rest of these are not currently part of the public interface of the library:
|
# the rest of these are not currently part of the public interface of the library:
|
||||||
$<BUILD_INTERFACE:${CMAKE_CURRENT_LIST_DIR}/include/date/solar_hijri.h>
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_LIST_DIR}/include/date/solar_hijri.h>
|
||||||
$<BUILD_INTERFACE:${CMAKE_CURRENT_LIST_DIR}/include/date/islamic.h>
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_LIST_DIR}/include/date/islamic.h>
|
||||||
@ -111,14 +111,14 @@ if( BUILD_TZ_LIB )
|
|||||||
add_library( date-tz )
|
add_library( date-tz )
|
||||||
target_sources( date-tz
|
target_sources( date-tz
|
||||||
PUBLIC
|
PUBLIC
|
||||||
$<BUILD_INTERFACE:${CMAKE_CURRENT_LIST_DIR}/include>$<INSTALL_INTERFACE:include>/date/tz.h
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_LIST_DIR}/include>$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}>/date/tz.h
|
||||||
PRIVATE
|
PRIVATE
|
||||||
include/date/tz_private.h
|
include/date/tz_private.h
|
||||||
src/tz.cpp )
|
src/tz.cpp )
|
||||||
if ( IOS )
|
if ( IOS )
|
||||||
target_sources( date-tz
|
target_sources( date-tz
|
||||||
PUBLIC
|
PUBLIC
|
||||||
$<BUILD_INTERFACE:${CMAKE_CURRENT_LIST_DIR}/include>$<INSTALL_INTERFACE:include>/date/ios.h
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_LIST_DIR}/include>$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}>/date/ios.h
|
||||||
PRIVATE
|
PRIVATE
|
||||||
src/ios.mm )
|
src/ios.mm )
|
||||||
endif()
|
endif()
|
||||||
@ -126,7 +126,7 @@ if( BUILD_TZ_LIB )
|
|||||||
target_link_libraries( date-tz PUBLIC date )
|
target_link_libraries( date-tz PUBLIC date )
|
||||||
target_include_directories( date-tz PUBLIC
|
target_include_directories( date-tz PUBLIC
|
||||||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
|
||||||
$<INSTALL_INTERFACE:include> )
|
$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}> )
|
||||||
|
|
||||||
if ( USE_SYSTEM_TZ_DB OR MANUAL_TZ_DB )
|
if ( USE_SYSTEM_TZ_DB OR MANUAL_TZ_DB )
|
||||||
target_compile_definitions( date-tz PRIVATE AUTO_DOWNLOAD=0 HAS_REMOTE_API=0 )
|
target_compile_definitions( date-tz PRIVATE AUTO_DOWNLOAD=0 HAS_REMOTE_API=0 )
|
||||||
|
Loading…
x
Reference in New Issue
Block a user