-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Addition of ign_migration_scripts from the subt_model_checkout reposi…
…tory to support migration of Gazebo 9 models to Ignition.
- Loading branch information
Showing
13 changed files
with
1,642 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
cmake_minimum_required(VERSION 2.8.3) | ||
project(ign_migration_scripts) | ||
|
||
find_package(catkin REQUIRED) | ||
|
||
catkin_package() | ||
|
||
catkin_add_env_hooks(ign SHELLS bash | ||
DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/env-hooks) | ||
catkin_add_env_hooks(ign SHELLS zsh | ||
DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/env-hooks) | ||
install(DIRECTORY launch | ||
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} | ||
) | ||
|
||
install(DIRECTORY worlds | ||
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} | ||
) |
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,6 @@ | ||
# Export Ignition environment variables | ||
|
||
export IGN_LAUNCH_CONFIG_PATH=@CMAKE_INSTALL_PREFIX@/@CATKIN_PACKAGE_SHARE_DESTINATION@/launch | ||
export IGN_LAUNCH_PLUGIN_PATH=@CMAKE_INSTALL_PREFIX@/@CATKIN_PACKAGE_LIB_DESTINATION@ | ||
export IGN_GAZEBO_RESOURCE_PATH=@CMAKE_INSTALL_PREFIX@/@CATKIN_PACKAGE_SHARE_DESTINATION@/worlds | ||
export SUBT_IMAGES_PATH=@CMAKE_INSTALL_PREFIX@/@CATKIN_PACKAGE_SHARE_DESTINATION@/images |
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,6 @@ | ||
# Export Ignition environment variables | ||
|
||
export IGN_LAUNCH_CONFIG_PATH=@CMAKE_INSTALL_PREFIX@/@CATKIN_PACKAGE_SHARE_DESTINATION@/launch | ||
export IGN_LAUNCH_PLUGIN_PATH=@CMAKE_INSTALL_PREFIX@/@CATKIN_PACKAGE_LIB_DESTINATION@ | ||
export IGN_GAZEBO_RESOURCE_PATH=@CMAKE_INSTALL_PREFIX@/@CATKIN_PACKAGE_SHARE_DESTINATION@/worlds | ||
export SUBT_IMAGES_PATH=@CMAKE_INSTALL_PREFIX@/@CATKIN_PACKAGE_SHARE_DESTINATION@/images |
Oops, something went wrong.