Skip to content

Instantly share code, notes, and snippets.

@jbohren
Created August 28, 2013 05:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jbohren/6362488 to your computer and use it in GitHub Desktop.
Save jbohren/6362488 to your computer and use it in GitHub Desktop.
# generated from catkin/cmake/template/pkgConfig.cmake.in
# append elements to a list if they are not already in the list
# copied from catkin/cmake/list_append_unique.cmake to keep pkgConfig
# self contained
macro(_list_append_unique listname)
foreach(_item ${ARGN})
list(FIND ${listname} ${_item} _index)
if(_index EQUAL -1)
list(APPEND ${listname} ${_item})
endif()
endforeach()
endmacro()
# remove duplicate libraries, generalized from PCLConfig.cmake.in
macro(_remove_duplicate_libraries _unfiltered_libraries _final_filtered_libraries)
set(_filtered_libraries)
set(_debug_libraries)
set(_optimized_libraries)
set(_other_libraries)
set(_waiting_for_debug 0)
set(_waiting_for_optimized 0)
set(_library_position -1)
foreach(library ${${_unfiltered_libraries}})
if("${library}" STREQUAL "debug")
set(_waiting_for_debug 1)
elseif("${library}" STREQUAL "optimized")
set(_waiting_for_optimized 1)
elseif(_waiting_for_debug)
list(FIND _debug_libraries "${library}" library_position)
if(library_position EQUAL -1)
list(APPEND ${_filtered_libraries} debug ${library})
list(APPEND _debug_libraries ${library})
endif()
set(_waiting_for_debug 0)
elseif(_waiting_for_optimized)
list(FIND _optimized_libraries "${library}" library_position)
if(library_position EQUAL -1)
list(APPEND ${_filtered_libraries} optimized ${library})
list(APPEND _optimized_libraries ${library})
endif()
set(_waiting_for_optimized 0)
else("${library}" STREQUAL "debug")
list(FIND _other_libraries "${library}" library_position)
if(library_position EQUAL -1)
list(APPEND ${_filtered_libraries} ${library})
list(APPEND _other_libraries ${library})
endif()
endif("${library}" STREQUAL "debug")
endforeach(library)
set(_final_filtered_libraries _filtered_libraries)
endmacro()
if(actionlib_CONFIG_INCLUDED)
return()
endif()
set(actionlib_CONFIG_INCLUDED TRUE)
# set variables for source/devel/install prefixes
if("FALSE" STREQUAL "TRUE")
set(actionlib_SOURCE_PREFIX /tmp/buildd/ros-hydro-actionlib-1.10.1-0precise-20130721-0336)
set(actionlib_DEVEL_PREFIX /tmp/buildd/ros-hydro-actionlib-1.10.1-0precise-20130721-0336/obj-x86_64-linux-gnu/devel)
set(actionlib_INSTALL_PREFIX "")
set(actionlib_PREFIX ${actionlib_DEVEL_PREFIX})
else()
set(actionlib_SOURCE_PREFIX "")
set(actionlib_DEVEL_PREFIX "")
set(actionlib_INSTALL_PREFIX /opt/ros/hydro)
set(actionlib_PREFIX ${actionlib_INSTALL_PREFIX})
endif()
# warn when using a deprecated package
if(NOT "" STREQUAL "")
set(_msg "WARNING: package 'actionlib' is deprecated")
# append custom deprecation text if available
if(NOT "" STREQUAL "TRUE")
set(_msg "${_msg} ()")
endif()
message("${_msg}")
endif()
# flag project as catkin-based to distinguish if a find_package()-ed project is a catkin project
set(actionlib_FOUND_CATKIN_PROJECT TRUE)
if(NOT "/opt/ros/hydro/include;/usr/include" STREQUAL "")
set(actionlib_INCLUDE_DIRS "")
set(absolute_include_dirs "/opt/ros/hydro/include;/usr/include")
foreach(idir ${absolute_include_dirs})
if(IS_ABSOLUTE ${idir} AND IS_DIRECTORY ${idir})
set(include ${idir})
elseif(IS_DIRECTORY /opt/ros/hydro/${idir})
set(include /opt/ros/hydro/${idir})
else()
message(FATAL_ERROR "Project 'actionlib' specifies '${idir}' as an include dir, which is not found. It does neither exist as an absolute directory nor in '/opt/ros/hydro/${idir}'. Ask the maintainer 'Dirk Thomas <dthomas@osrfoundation.org>' to fix it.")
endif()
_list_append_unique(actionlib_INCLUDE_DIRS ${include})
endforeach()
endif()
set(libraries "actionlib;/usr/lib/libboost_thread-mt.so;pthread")
foreach(library ${libraries})
if(TARGET ${library})
list(APPEND actionlib_LIBRARIES ${library})
elseif(IS_ABSOLUTE ${library})
list(APPEND actionlib_LIBRARIES ${library})
else()
set(lib_path "")
set(lib "${library}-NOTFOUND")
# since the path where the library is found is returned we have to iterate over the paths manually
foreach(path /opt/ros/hydro/lib;/opt/ros/hydro/lib)
find_library(lib ${library}
PATHS ${path}
NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH)
if(lib)
set(lib_path ${path})
break()
endif()
endforeach()
if(lib)
_list_append_unique(actionlib_LIBRARY_DIRS ${lib_path})
list(APPEND actionlib_LIBRARIES ${lib})
else()
# as a fall back for non-catkin libraries try to search globally
find_library(lib ${library})
if(NOT lib)
message(FATAL_ERROR "Project '${PROJECT_NAME}' tried to find library '${library}'. The library is neither a target nor built/installed properly. Did you compile project 'actionlib'? Did you find_package() it before the subdirectory containing its code is included?")
endif()
list(APPEND actionlib_LIBRARIES ${lib})
endif()
endif()
endforeach()
set(actionlib_EXPORTED_TARGETS "actionlib_generate_messages_cpp;actionlib_generate_messages_lisp;actionlib_generate_messages_py")
# create dummy targets for exported code generation targets to make life of users easier
foreach(t ${actionlib_EXPORTED_TARGETS})
if(NOT TARGET ${t})
add_custom_target(${t})
endif()
endforeach()
set(depends "actionlib_msgs;message_runtime;roscpp;std_msgs")
foreach(depend ${depends})
string(REPLACE " " ";" depend_list ${depend})
# the package name of the dependency must be kept in a unique variable so that it is not overwritten in recursive calls
list(GET depend_list 0 actionlib_dep)
list(LENGTH depend_list count)
if(${count} EQUAL 1)
# simple dependencies must only be find_package()-ed once
if(NOT ${actionlib_dep}_FOUND)
find_package(${actionlib_dep} REQUIRED)
endif()
else()
# dependencies with components must be find_package()-ed again
list(REMOVE_AT depend_list 0)
find_package(${actionlib_dep} REQUIRED ${depend_list})
endif()
_list_append_unique(actionlib_INCLUDE_DIRS ${${actionlib_dep}_INCLUDE_DIRS})
list(APPEND actionlib_LIBRARIES ${${actionlib_dep}_LIBRARIES})
_list_append_unique(actionlib_LIBRARY_DIRS ${${actionlib_dep}_LIBRARY_DIRS})
list(APPEND actionlib_EXPORTED_TARGETS ${${actionlib_dep}_EXPORTED_TARGETS})
endforeach()
if(actionlib_LIBRARIES)
_remove_duplicate_libraries(actionlib_LIBRARIES actionlib_LIBRARIES)
endif()
set(pkg_cfg_extras "actionlib-msg-extras.cmake")
foreach(extra ${pkg_cfg_extras})
if(NOT IS_ABSOLUTE ${extra})
set(extra ${actionlib_DIR}/${extra})
endif()
include(${extra})
endforeach()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment