forked from jupyter-xeus/xeus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xeusConfig.cmake.in
22 lines (19 loc) · 1.02 KB
/
xeusConfig.cmake.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
############################################################################
# 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. #
############################################################################
# xeus cmake module
# This module sets the following variables in your project::
#
# xeus_FOUND - true if xeus found on the system
# xeus_INCLUDE_DIRS - the directory containing xeus headers
# xeus_LIBRARY - the library for dynamic linking
@PACKAGE_INIT@
if(NOT TARGET xeus)
include("${CMAKE_CURRENT_LIST_DIR}/@[email protected]")
get_target_property(@PROJECT_NAME@_INCLUDE_DIR xeus INTERFACE_INCLUDE_DIRECTORIES)
get_target_property(@PROJECT_NAME@_LIBRARY xeus LOCATION)
endif()