JanssonConfig.cmake.in 597 B

1234567891011121314151617
  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. # Get the path of the current file.
  6. get_filename_component(JANSSON_CMAKE_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
  7. # Set the include directories.
  8. set(JANSSON_INCLUDE_DIRS "@JANSSON__INCLUDE_DIRS@")
  9. # Include the project Targets file, this contains definitions for IMPORTED targets.
  10. include(${JANSSON_CMAKE_DIR}/JanssonTargets.cmake)
  11. # IMPORTED targets from JanssonTargets.cmake
  12. set(JANSSON_LIBRARIES jansson)