Config.cmake.in 569 B

1234567891011121314
  1. # - Config file for the @PROJECT_NAME@ package
  2. # It defines the following variables
  3. # UBXPROTO_INCLUDE_DIR - include directories for FooBar
  4. # UBXPROTO_LIBRARIES - libraries to link against
  5. # Compute paths
  6. get_filename_component(UBXPROTO_CMAKE_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
  7. set(UBXPROTO_INCLUDE_DIRS "@CONF_INCLUDE_DIRS@")
  8. # Our library dependencies (contains definitions for IMPORTED targets)
  9. include("${UBXPROTO_CMAKE_DIR}/@PROJECT_NAME@Targets.cmake")
  10. # These are IMPORTED targets created by FooBarTargets.cmake
  11. set(UBXPROTO_LIBRARIES @PROJECT_LIBS@)