mirror of https://github.com/mamba-org/mamba.git
43 lines
2.0 KiB
CMake
43 lines
2.0 KiB
CMake
############################################################################
|
|
# Copyright (c) 2019, QuantStack and Mamba Contributors #
|
|
# #
|
|
# Distributed under the terms of the BSD 3-Clause License. #
|
|
# #
|
|
# The full license is in the file LICENSE, distributed with this software. #
|
|
############################################################################
|
|
|
|
# libmamba cmake module
|
|
# This module sets the following variables in your project::
|
|
#
|
|
# libmamba_FOUND - true if libmamba found on the system
|
|
# libmamba_INCLUDE_DIRS - the directory containing libmamba headers
|
|
# libmamba_LIBRARY - the library for dynamic linking
|
|
# libmamba_STATIC_LIBRARY - the library for static linking
|
|
|
|
@PACKAGE_INIT@
|
|
|
|
set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR};${CMAKE_MODULE_PATH}")
|
|
|
|
@LIBMAMBA_CONFIG_CODE@
|
|
|
|
include(CMakeFindDependencyMacro)
|
|
find_dependency(nlohmann_json)
|
|
find_dependency(Threads)
|
|
|
|
if(NOT TARGET libmamba AND NOT TARGET libmamba-static)
|
|
include("${CMAKE_CURRENT_LIST_DIR}/@PROJECT_NAME@Targets.cmake")
|
|
|
|
if (TARGET libmamba AND TARGET libmamba-static)
|
|
get_target_property(@PROJECT_NAME@_INCLUDE_DIR libmamba INTERFACE_INCLUDE_DIRECTORIES)
|
|
get_target_property(@PROJECT_NAME@_LIBRARY libmamba LOCATION)
|
|
get_target_property(@PROJECT_NAME@_STATIC_LIBRARY libmamba-static LOCATION)
|
|
elseif (TARGET libmamba)
|
|
get_target_property(@PROJECT_NAME@_INCLUDE_DIR libmamba INTERFACE_INCLUDE_DIRECTORIES)
|
|
get_target_property(@PROJECT_NAME@_LIBRARY libmamba LOCATION)
|
|
elseif (TARGET libmamba-static)
|
|
get_target_property(@PROJECT_NAME@_INCLUDE_DIR libmamba-static INTERFACE_INCLUDE_DIRECTORIES)
|
|
get_target_property(@PROJECT_NAME@_STATIC_LIBRARY libmamba-static LOCATION)
|
|
set(@PROJECT_NAME@_LIBRARY ${@PROJECT_NAME@_STATIC_LIBRARY})
|
|
endif ()
|
|
endif()
|