forked from xtensor-stack/xtl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xtlConfig.cmake.in
21 lines (18 loc) · 976 Bytes
/
xtlConfig.cmake.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
############################################################################
# Copyright (c) 2017, Sylvain Corlay and Johan Mabille #
# #
# Distributed under the terms of the BSD 3-Clause License. #
# #
# The full license is in the file LICENSE, distributed with this software. #
############################################################################
# xtl cmake module
# This module sets the following variables in your project::
#
# xtl_FOUND - true if xtl found on the system
# xtl_INCLUDE_DIRS - the directory containing xtl headers
# xtl_LIBRARY - empty
@PACKAGE_INIT@
if(NOT TARGET @PROJECT_NAME@)
include("${CMAKE_CURRENT_LIST_DIR}/@[email protected]")
get_target_property(@PROJECT_NAME@_INCLUDE_DIRS @PROJECT_NAME@ INTERFACE_INCLUDE_DIRECTORIES)
endif()