msgpack-config.cmake.in 385 B

1234567891011121314151617181920212223
  1. #.rst:
  2. # msgpack
  3. # -------
  4. #
  5. # The following import targets are created
  6. #
  7. # ::
  8. #
  9. # msgpackc-static
  10. # msgpackc
  11. #
  12. @PACKAGE_INIT@
  13. include(CMakeFindDependencyMacro)
  14. if(NOT TARGET msgpackc AND NOT TARGET msgpackc-static)
  15. include("${CMAKE_CURRENT_LIST_DIR}/msgpack-targets.cmake")
  16. if(NOT @MSGPACK_ENABLE_SHARED@)
  17. add_library(msgpackc ALIAS msgpackc-static)
  18. endif()
  19. endif()