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
|
# Copyright 2019 Xilinx Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy of
# the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations under
# the License.
include("${CMAKE_CURRENT_LIST_DIR}/@PROJECT_NAME@-targets.cmake")
set(@PROJECT_NAME@_FOUND True)
get_target_property(TARGET_LOCATION @PROJECT_NAME@::@PROJECT_NAME@ LOCATION)
message(
STATUS
"Found importable target @PROJECT_NAME@::@PROJECT_NAME@: ${TARGET_LOCATION}"
)
get_filename_component(@PROJECT_NAME@_CMAKE_DIR "${CMAKE_CURRENT_LIST_FILE}"
PATH)
set(@PROJECT_NAME@_INCLUDE_DIRS "@CONF_INCLUDE_DIRS@")
find_package(glog QUIET)
if(NOT glog_FOUND)
message(STATUS "cannot find glogConfig.cmake fallback to pkg-config")
find_package(PkgConfig)
pkg_search_module(PKG_GLOG REQUIRED IMPORTED_TARGET GLOBAL libglog)
add_library(glog::glog ALIAS PkgConfig::PKG_GLOG)
endif(NOT glog_FOUND)
include("${CMAKE_CURRENT_LIST_DIR}/vai_add_pybind11_module.cmake")
|