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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
############################################################################
# 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(NOT TARGET @PROJECT_NAME@)
include("${CMAKE_CURRENT_LIST_DIR}/@PROJECT_NAME@Targets.cmake")
get_target_property(@PROJECT_NAME@_INCLUDE_DIRS @PROJECT_NAME@ INTERFACE_INCLUDE_DIRECTORIES)
endif()
if(XTENSOR_USE_XSIMD)
find_dependency(xsimd @xsimd_REQUIRED_VERSION@)
target_link_libraries(@PROJECT_NAME@ INTERFACE xsimd)
target_compile_definitions(@PROJECT_NAME@ INTERFACE XTENSOR_USE_XSIMD)
endif()
if(XTENSOR_USE_TBB)
find_dependency(TBB)
target_link_libraries(@PROJECT_NAME@ INTERFACE TBB::tbb)
target_compile_definitions(@PROJECT_NAME@ INTERFACE XTENSOR_USE_TBB)
endif()
if (${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION} VERSION_GREATER_EQUAL 3.11)
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()
include(CheckCXXCompilerFlag)
CHECK_CXX_COMPILER_FLAG(-march=native arch_native_supported)
if(arch_native_supported)
target_compile_options(xtensor::optimize INTERFACE -march=native)
endif()
endif()
endif()
if(NOT TARGET xtensor::use_xsimd)
find_package(xsimd QUIET)
if (xsimd_FOUND)
add_library(xtensor::use_xsimd INTERFACE IMPORTED)
target_link_libraries(xtensor::use_xsimd INTERFACE xsimd)
target_compile_definitions(xtensor::use_xsimd INTERFACE XTENSOR_USE_XSIMD)
endif()
endif()
if(NOT TARGET xtensor::use_TBB)
find_package(TBB QUIET)
if (TBB_FOUND)
add_library(xtensor::use_TBB INTERFACE IMPORTED)
target_compile_definitions(xtensor::use_TBB INTERFACE XTENSOR_USE_TBB)
endif()
endif()
endif()
|