mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-25 20:45:35 -04:00
21 lines
989 B
CMake
21 lines
989 B
CMake
############################################################################
|
|
# 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_FOUND - true if xtensor found on the system
|
|
# xtensor_INCLUDE_DIRS - the directory containing xtensor headers
|
|
# xtensor_LIBRARY - empty
|
|
|
|
@PACKAGE_INIT@
|
|
|
|
if(NOT TARGET @PROJECT_NAME@)
|
|
include("${CMAKE_CURRENT_LIST_DIR}/@PROJECT_NAME@Targets.cmake")
|
|
get_target_property(@PROJECT_NAME@_INCLUDE_DIRS xtensor INTERFACE_INCLUDE_DIRECTORIES)
|
|
endif()
|