-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathxeus-octaveConfig.cmake.in
44 lines (37 loc) · 1.95 KB
/
xeus-octaveConfig.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
############################################################################
# Copyright (c) 2022, Giulio Girardi
#
#
# Distributed under the terms of the GNU General Public License v3.
#
# The full license is in the file LICENSE, distributed with this software.
############################################################################
# xeus-octave cmake module
# This module sets the following variables in your project::
#
# xeus-octave_FOUND - true if xeus-octave was found on the system
# xeus-octave_INCLUDE_DIRS - the directory containing xeus-octave headers
# xeus-octave_LIBRARY - the library for dynamic linking
# xeus-octave_STATIC_LIBRARY - the library for static linking
@PACKAGE_INIT@
set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR};${CMAKE_MODULE_PATH}")
@XEUS_OCTAVE_CONFIG_CODE@
include(CMakeFindDependencyMacro)
find_dependency(xeus-zmq @xeus-zmq_VERSION@)
find_dependency(PkgConfig REQUIRED)
pkg_check_modules(octinterp REQUIRED IMPORTED_TARGET GLOBAL octinterp=@octinterp_VERSION@)
if (NOT TARGET xeus-octave AND NOT TARGET xeus-octave-static)
include("${CMAKE_CURRENT_LIST_DIR}/@[email protected]")
if (TARGET xeus-octave AND TARGET xeus-octave-static)
get_target_property(@PROJECT_NAME@_INCLUDE_DIR xeus-octave INTERFACE_INCLUDE_DIRECTORIES)
get_target_property(@PROJECT_NAME@_LIBRARY xeus-octave LOCATION)
get_target_property(@PROJECT_NAME@_STATIC_LIBRARY xeus-octave-static LOCATION)
elseif (TARGET xeus-octave)
get_target_property(@PROJECT_NAME@_INCLUDE_DIR xeus-octave INTERFACE_INCLUDE_DIRECTORIES)
get_target_property(@PROJECT_NAME@_LIBRARY xeus-octave LOCATION)
elseif (TARGET xeus-octave-static)
get_target_property(@PROJECT_NAME@_INCLUDE_DIR xeus-octave-static INTERFACE_INCLUDE_DIRECTORIES)
get_target_property(@PROJECT_NAME@_STATIC_LIBRARY xeus-octave-static LOCATION)
set(@PROJECT_NAME@_LIBRARY ${@PROJECT_NAME@_STATIC_LIBRARY})
endif ()
endif ()