blob: 41ff7fddc17fb30a22f1444942f624ebabd6523d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Ouroboros CMake Package Configuration
#
# This file allows other CMake projects to find and use Ouroboros libraries
# via find_package(Ouroboros).
#
# Exported targets:
# Ouroboros::dev - Development library (libouroboros-dev)
# Ouroboros::irm - IRM management library (libouroboros-irm)
#
# Example usage:
# find_package(Ouroboros REQUIRED)
# target_link_libraries(myapp Ouroboros::dev)
@PACKAGE_INIT@
include(CMakeFindDependencyMacro)
# Required dependencies for Ouroboros libraries
find_dependency(Threads)
include("${CMAKE_CURRENT_LIST_DIR}/OuroborosTargets.cmake")
check_required_components(Ouroboros)
|