1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
# SPDX-FileCopyrightInfo: Copyright © DUNE Project contributors, see file LICENSE.md in module root
# SPDX-License-Identifier: LicenseRef-GPL-2.0-only-with-DUNE-exception
#[=======================================================================[.rst:
DuneDefaultIncludeDirectories
-----------------------------
Add the default include directories to a target.
.. cmake:command:: dune_default_include_directories
Add the source and build directory the the targets include directories
in the build-interface and the corresponding installed include dir in
the install-interface.
.. code-block:: cmake
dune_default_include_directories(<target> [PRIVATE|PUBLIC|INTERFACE])
#]=======================================================================]
include_guard(GLOBAL)
function(dune_default_include_directories _target _scope)
target_include_directories(${_target} ${_scope}
$<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}>
$<BUILD_INTERFACE:${PROJECT_BINARY_DIR}> # config.h
$<BUILD_INTERFACE:${PROJECT_BINARY_DIR}/include> # <module>-config.hh
$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}>)
if(NOT _scope STREQUAL "INTERFACE")
target_include_directories(${_target} PRIVATE
$<BUILD_INTERFACE:${PROJECT_BINARY_DIR}/include_private>) # <module>-config-private.hh
endif()
endfunction(dune_default_include_directories)
|