-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add an API call to get extension info (#151)
* Add API Call * Implement a tool to inspect rgl version and extensions. * Enable tools builing on Windows * Add hint to error 126 * Fix ros2 standalone to be interpreted as ros2 extension * Apply review changes --------- Co-authored-by: Mateusz Szczygielski <[email protected]>
- Loading branch information
Showing
14 changed files
with
226 additions
and
34 deletions.
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
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
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 |
---|---|---|
@@ -1,8 +1,13 @@ | ||
add_executable(tapePlayer tapePlayer.cpp) | ||
target_link_libraries(tapePlayer RobotecGPULidar spdlog) | ||
add_executable(inspectLibRGL inspectLibRGL.cpp) | ||
|
||
if (RGL_BUILD_PCL_EXTENSION) | ||
add_executable(tapeVisualizer tapeVisualizer.cpp) | ||
target_link_libraries(tapeVisualizer RobotecGPULidar spdlog yaml-cpp) | ||
target_include_directories(tapeVisualizer PRIVATE ${CMAKE_SOURCE_DIR}/src) | ||
# Linux only - tape related tools | ||
if ((NOT WIN32)) | ||
if (RGL_BUILD_PCL_EXTENSION) | ||
add_executable(tapeVisualizer tapeVisualizer.cpp) | ||
target_link_libraries(tapeVisualizer RobotecGPULidar spdlog yaml-cpp) | ||
target_include_directories(tapeVisualizer PRIVATE ${CMAKE_SOURCE_DIR}/src) | ||
endif() | ||
|
||
add_executable(tapePlayer tapePlayer.cpp) | ||
target_link_libraries(tapePlayer RobotecGPULidar spdlog) | ||
endif() |
Oops, something went wrong.