SickLDMRSConfig.cmake 665 B

12345678910111213141516
  1. # - Config file for the SickLDMRS package
  2. # It defines the following variables
  3. # SICK_LDMRS_INCLUDE_DIRS - include directories for SickLDMRS
  4. # SICK_LDMRS_LIBRARIES - libraries to link against
  5. # Compute paths
  6. get_filename_component(SICK_LDMRS_CMAKE_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
  7. set(SICK_LDMRS_INCLUDE_DIRS "${SICK_LDMRS_CMAKE_DIR}/../../../include")
  8. # Our library dependencies (contains definitions for IMPORTED targets)
  9. if(NOT TARGET LDMRS_Example AND NOT SickLDMRS_BINARY_DIR)
  10. include("${SICK_LDMRS_CMAKE_DIR}/SickLDMRSTargets.cmake")
  11. endif()
  12. # These are IMPORTED targets created by SickLDMRSTargets.cmake
  13. set(SICK_LDMRS_LIBRARIES sick_ldmrs)