forked from xtensor-stack/xtensor-io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxtensor-ioConfig.cmake.in
21 lines (18 loc) · 963 Bytes
/
xtensor-ioConfig.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) 2016, Johan Mabille and Sylvain Corlay #
# #
# Distributed under the terms of the BSD 3-Clause License. #
# #
# The full license is in the file LICENSE, distributed with this software. #
############################################################################
# xtensor cmake module
# This module sets the following variables in your project::
#
# xtensor_io_FOUND - true if xtensor found on the system
# xtensor_io_INCLUDE_DIRS - the directory containing xtensor headers
# xtensor_io_LIBRARY - empty
@PACKAGE_INIT@
set(PN xtensor_io)
set_and_check(${PN}_INCLUDE_DIRS "${PACKAGE_PREFIX_DIR}/@CMAKE_INSTALL_INCLUDEDIR@")
set(${PN}_LIBRARY "")
check_required_components(${PN})