xref: /NextBSD/contrib/jansson/cmake/JanssonConfig.cmake.in (revision 33da5adc555b3bc29986eeadca03829e4ad06b1e)
1# - Config file for the jansson package
2# It defines the following variables
3#  JANSSON_INCLUDE_DIRS - include directories for FooBar
4#  JANSSON_LIBRARIES    - libraries to link against
5
6# Get the path of the current file.
7get_filename_component(JANSSON_CMAKE_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
8
9# Set the include directories.
10set(JANSSON_INCLUDE_DIRS "@JANSSON__INCLUDE_DIRS@")
11
12# Include the project Targets file, this contains definitions for IMPORTED targets.
13include(${JANSSON_CMAKE_DIR}/JanssonTargets.cmake)
14
15# IMPORTED targets from JanssonTargets.cmake
16set(JANSSON_LIBRARIES jansson)
17
18