forked from xtensor-stack/xtensor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxtensorConfig.cmake.in
55 lines (46 loc) · 1.97 KB
/
xtensorConfig.cmake.in
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
############################################################################
# Copyright (c) Johan Mabille, Sylvain Corlay and Wolf Vollprecht #
# Copyright (c) QuantStack
# #
# 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@
include(CMakeFindDependencyMacro)
find_dependency(xtl @xtl_REQUIRED_VERSION@)
if(XTENSOR_USE_XSIMD)
find_dependency(xsimd @xsimd_REQUIRED_VERSION@)
endif()
if(XTENSOR_USE_TBB)
find_dependency(TBB)
endif()
if(NOT TARGET @PROJECT_NAME@)
include("${CMAKE_CURRENT_LIST_DIR}/@[email protected]")
get_target_property(@PROJECT_NAME@_INCLUDE_DIRS @PROJECT_NAME@ INTERFACE_INCLUDE_DIRECTORIES)
if(${CMAKE_VERSION} VERSION_GREATER_EQUAL 3.8)
target_compile_features(@PROJECT_NAME@ INTERFACE cxx_std_14)
endif()
endif()
if(NOT TARGET xtensor::optimize)
add_library(xtensor::optimize INTERFACE IMPORTED)
# Microsoft compiler
if(CMAKE_${COMPILER_LANGUAGE}_COMPILER_IS_MSVC)
target_compile_options(xtensor::optimize INTERFACE /EHsc /MP /bigobj)
# gcc, clang, ...
else()
target_compile_options(xtensor::optimize INTERFACE -march=native)
endif()
endif()
if(NOT TARGET xtensor::xsimd)
add_library(xtensor::xsimd INTERFACE IMPORTED)
find_dependency(xsimd @xsimd_REQUIRED_VERSION@)
target_link_libraries(xtensor::xsimd INTERFACE xsimd)
target_compile_definitions(xtensor::xsimd INTERFACE XTENSOR_USE_XSIMD)
endif()