-
Notifications
You must be signed in to change notification settings - Fork 124
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Arc 258 more humble #2475
Merged
Merged
Arc 258 more humble #2475
Changes from 8 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
436b076
ported arbitrator to humbele
john-chrosniak 19ee01b
carma_cloud_client builds in humble
john-chrosniak 8bd0d3e
carma_cooperative_perception builds in humble
john-chrosniak 2bd73cc
carma_wm_ctrl builds in humble
john-chrosniak 32c1488
frame_transformer builds in humble
john-chrosniak f0ea918
pure_pursuit_wrapper builds in humble
john-chrosniak f25360b
stop_and_wait_plugin builds in humble
john-chrosniak c9206c7
added migrated packages to list
john-chrosniak f43a807
removed Find PROJ cmake
john-chrosniak 9ea9fea
fixed formatting
john-chrosniak File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
approximate_intersection carma motion_prediction_visualizer system_controller object_visualizer mock_controller_driver object_detection_tracking gnss_to_map_convertor mobilitypath_visualizer bsm_generator trajectory_visualizer trajectory_executor lightbar_manager mobilitypath_publisher guidance port_drayage_plugin subsystem_controllers carma_wm roadway_objects basic_autonomy carma_guidance_plugins plan_delegator traffic_incident_parser platooning_tactical_plugin intersection_transit_maneuvering light_controlled_intersection_tactical_plugin stop_and_dwell_strategic_plugin cooperative_lanechange lci_strategic_plugin stop_controlled_intersection_tactical_plugin sci_strategic_plugin inlanecruising_plugin platooning_control trajectory_follower_wrapper approaching_emergency_vehicle_plugin yield_plugin | ||
approximate_intersection carma motion_prediction_visualizer system_controller object_visualizer mock_controller_driver object_detection_tracking gnss_to_map_convertor mobilitypath_visualizer bsm_generator trajectory_visualizer trajectory_executor lightbar_manager mobilitypath_publisher guidance port_drayage_plugin subsystem_controllers carma_wm roadway_objects basic_autonomy carma_guidance_plugins plan_delegator traffic_incident_parser platooning_tactical_plugin intersection_transit_maneuvering light_controlled_intersection_tactical_plugin stop_and_dwell_strategic_plugin cooperative_lanechange lci_strategic_plugin stop_controlled_intersection_tactical_plugin sci_strategic_plugin inlanecruising_plugin platooning_control trajectory_follower_wrapper approaching_emergency_vehicle_plugin yield_plugin arbitrator carma_cloud_client carma_cooperative_perception carma_wm_ctrl frame_transformer pure_pursuit_wrapper stop_and_wait_plugin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying | ||
# file COPYING-CMAKE-SCRIPTS or https://cmake.org/licensing for details. | ||
|
||
#[=======================================================================[.rst: | ||
FindPROJ | ||
--------- | ||
|
||
CMake module to search for PROJ(PROJ.4 and PROJ) library | ||
|
||
On success, the macro sets the following variables: | ||
``PROJ_FOUND`` | ||
if the library found | ||
|
||
``PROJ_LIBRARIES`` | ||
full path to the library | ||
|
||
``PROJ_INCLUDE_DIRS`` | ||
where to find the library headers | ||
|
||
``PROJ_VERSION_STRING`` | ||
version string of PROJ | ||
|
||
Copyright (c) 2009 Mateusz Loskot <[email protected]> | ||
Copyright (c) 2015 NextGIS <[email protected]> | ||
Copyright (c) 2018 Hiroshi Miura | ||
|
||
#]=======================================================================] | ||
|
||
find_path(PROJ_INCLUDE_DIR proj.h | ||
PATHS ${PROJ_ROOT}/include | ||
DOC "Path to PROJ library include directory") | ||
|
||
set(PROJ_NAMES ${PROJ_NAMES} proj proj_i) | ||
set(PROJ_NAMES_DEBUG ${PROJ_NAMES_DEBUG} projd proj_d) | ||
|
||
if(NOT PROJ_LIBRARY) | ||
find_library(PROJ_LIBRARY_RELEASE NAMES ${PROJ_NAMES}) | ||
find_library(PROJ_LIBRARY_DEBUG NAMES ${PROJ_NAMES_DEBUG}) | ||
include(SelectLibraryConfigurations) | ||
select_library_configurations(PROJ) | ||
mark_as_advanced(PROJ_LIBRARY_RELEASE PROJ_LIBRARY_DEBUG) | ||
endif() | ||
|
||
unset(PROJ_NAMES) | ||
unset(PROJ_NAMES_DEBUG) | ||
|
||
if(PROJ_INCLUDE_DIR) | ||
file(READ "${PROJ_INCLUDE_DIR}/proj.h" PROJ_H_CONTENTS) | ||
string(REGEX REPLACE "^.*PROJ_VERSION_MAJOR +([0-9]+).*$" "\\1" PROJ_VERSION_MAJOR "${PROJ_H_CONTENTS}") | ||
string(REGEX REPLACE "^.*PROJ_VERSION_MINOR +([0-9]+).*$" "\\1" PROJ_VERSION_MINOR "${PROJ_H_CONTENTS}") | ||
string(REGEX REPLACE "^.*PROJ_VERSION_PATCH +([0-9]+).*$" "\\1" PROJ_VERSION_PATCH "${PROJ_H_CONTENTS}") | ||
unset(PROJ_H_CONTENTS) | ||
set(PROJ_VERSION_STRING "${PROJ_VERSION_MAJOR}.${PROJ_VERSION_MINOR}.${PROJ_VERSION_PATCH}") | ||
endif () | ||
|
||
include(FindPackageHandleStandardArgs) | ||
find_package_handle_standard_args(PROJ | ||
REQUIRED_VARS PROJ_LIBRARY PROJ_INCLUDE_DIR | ||
VERSION_VAR PROJ_VERSION_STRING) | ||
mark_as_advanced(PROJ_INCLUDE_DIR PROJ_LIBRARY) | ||
|
||
if(PROJ_FOUND) | ||
set(PROJ_LIBRARIES "${PROJ_LIBRARY}") | ||
set(PROJ_INCLUDE_DIRS "${PROJ_INCLUDE_DIR}") | ||
if(NOT TARGET PROJ::proj) | ||
add_library(PROJ::proj UNKNOWN IMPORTED) | ||
set_target_properties(PROJ::proj PROPERTIES | ||
INTERFACE_INCLUDE_DIRECTORIES "${PROJ_INCLUDE_DIR}" | ||
IMPORTED_LINK_INTERFACE_LANGUAGES "C") | ||
if(EXISTS "${PROJ_LIBRARY}") | ||
set_target_properties(PROJ::proj PROPERTIES | ||
IMPORTED_LINK_INTERFACE_LANGUAGES "C" | ||
IMPORTED_LOCATION "${PROJ_LIBRARY}") | ||
endif() | ||
if(EXISTS "${PROJ_LIBRARY_RELEASE}") | ||
set_property(TARGET PROJ::proj APPEND PROPERTY | ||
IMPORTED_CONFIGURATIONS RELEASE) | ||
set_target_properties(PROJ::proj PROPERTIES | ||
IMPORTED_LINK_INTERFACE_LANGUAGES_RELEASE "C" | ||
IMPORTED_LOCATION_RELEASE "${PROJ_LIBRARY_RELEASE}") | ||
endif() | ||
if(EXISTS "${PROJ_LIBRARY_DEBUG}") | ||
set_property(TARGET PROJ::proj APPEND PROPERTY | ||
IMPORTED_CONFIGURATIONS DEBUG) | ||
set_target_properties(PROJ::proj PROPERTIES | ||
IMPORTED_LINK_INTERFACE_LANGUAGES_DEBUG "C" | ||
IMPORTED_LOCATION_DEBUG "${PROJ_LIBRARY_DEBUG}") | ||
endif() | ||
endif() | ||
endif() | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we need this since we added the
FindPROJ
in cmake? It looks like it built without it anyways. So we should delete the cmake folderThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah it looks like FindPROJ.cmake is not actually needed so I removed it. The rest of the cmake folder is still in use though