diff --git a/CMakeLists.txt b/CMakeLists.txt index d3e4f245b..3b60a20b3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.10.2 FATAL_ERROR) #============================================================================ # Initialize the project #============================================================================ -project(ignition-rendering5 VERSION 5.0.0) +project(ignition-rendering6 VERSION 6.0.0) #============================================================================ # Find ignition-cmake diff --git a/Changelog.md b/Changelog.md index 0d32e7e94..f96f6edad 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,9 @@ ## Ignition Rendering +### Ignition Rendering 6.X + +### Ignition Rendering 6.0.0 (20XX-XX-XX) + ### Ignition Rendering 5.X ### Ignition Rendering 5.X.X diff --git a/examples/actor_animation/CMakeLists.txt b/examples/actor_animation/CMakeLists.txt index e86eae086..1b2119d0d 100644 --- a/examples/actor_animation/CMakeLists.txt +++ b/examples/actor_animation/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.10.2 FATAL_ERROR) project(ignition-rendering-actor-animation) -find_package(ignition-rendering5 REQUIRED) +find_package(ignition-rendering6 REQUIRED) include_directories(SYSTEM ${PROJECT_BINARY_DIR} diff --git a/examples/camera_tracking/CMakeLists.txt b/examples/camera_tracking/CMakeLists.txt index 945cfbe33..4c2b3b221 100644 --- a/examples/camera_tracking/CMakeLists.txt +++ b/examples/camera_tracking/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.10.2 FATAL_ERROR) project(ignition-rendering-camera-tracking) -find_package(ignition-rendering5 REQUIRED) +find_package(ignition-rendering6 REQUIRED) find_package(GLUT REQUIRED) include_directories(SYSTEM ${GLUT_INCLUDE_DIRS}) diff --git a/examples/custom_scene_viewer/CMakeLists.txt b/examples/custom_scene_viewer/CMakeLists.txt index b56ac7bec..5846bbdb1 100644 --- a/examples/custom_scene_viewer/CMakeLists.txt +++ b/examples/custom_scene_viewer/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.10.2 FATAL_ERROR) project(ignition-rendering-custom-scene-viewer) -find_package(ignition-rendering5 REQUIRED) +find_package(ignition-rendering6 REQUIRED) include_directories(SYSTEM ${PROJECT_BINARY_DIR} diff --git a/examples/custom_shaders/CMakeLists.txt b/examples/custom_shaders/CMakeLists.txt index 3615df111..e9c922162 100644 --- a/examples/custom_shaders/CMakeLists.txt +++ b/examples/custom_shaders/CMakeLists.txt @@ -5,7 +5,7 @@ include_directories(SYSTEM ${PROJECT_BINARY_DIR} ) -find_package(ignition-rendering5 REQUIRED) +find_package(ignition-rendering6 REQUIRED) find_package(GLUT REQUIRED) include_directories(SYSTEM ${GLUT_INCLUDE_DIRS}) diff --git a/examples/gazebo_scene_viewer/CMakeLists.txt b/examples/gazebo_scene_viewer/CMakeLists.txt index 3cb34e4a1..3ce7a5b5b 100644 --- a/examples/gazebo_scene_viewer/CMakeLists.txt +++ b/examples/gazebo_scene_viewer/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.10.2 FATAL_ERROR) project(ignition-rendering-gazebo-scene-viewer) -find_package(ignition-rendering5 REQUIRED) +find_package(ignition-rendering6 REQUIRED) find_package(gazebo REQUIRED) include_directories(SYSTEM ${GAZEBO_INCLUDE_DIRS}) diff --git a/examples/heightmap/CMakeLists.txt b/examples/heightmap/CMakeLists.txt index 490f612cc..4b7c2e060 100644 --- a/examples/heightmap/CMakeLists.txt +++ b/examples/heightmap/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.10.2 FATAL_ERROR) project(ignition-rendering-heightmap) -find_package(ignition-rendering5 REQUIRED) +find_package(ignition-rendering6 REQUIRED) include_directories(SYSTEM ${PROJECT_BINARY_DIR} diff --git a/examples/hello_world_plugin/CMakeLists.txt b/examples/hello_world_plugin/CMakeLists.txt index b9ede27c6..94cae8f92 100644 --- a/examples/hello_world_plugin/CMakeLists.txt +++ b/examples/hello_world_plugin/CMakeLists.txt @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.5 FATAL_ERROR) set(IGN_PLUGIN_VER 1) set(IGN_COMMON_VER 3) -find_package(ignition-rendering5 REQUIRED) +find_package(ignition-rendering6 REQUIRED) find_package(ignition-plugin1 REQUIRED COMPONENTS all) add_library(HelloWorldPlugin SHARED HelloWorldPlugin.cc) diff --git a/examples/lidar_visual/CMakeLists.txt b/examples/lidar_visual/CMakeLists.txt index 3e1816993..a9664be5f 100644 --- a/examples/lidar_visual/CMakeLists.txt +++ b/examples/lidar_visual/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.10.2 FATAL_ERROR) project(ignition-rendering-lidar_visual) -find_package(ignition-rendering5 REQUIRED) +find_package(ignition-rendering6 REQUIRED) include_directories(SYSTEM ${PROJECT_BINARY_DIR} diff --git a/examples/mesh_viewer/CMakeLists.txt b/examples/mesh_viewer/CMakeLists.txt index ff40e4415..abf9ea18f 100644 --- a/examples/mesh_viewer/CMakeLists.txt +++ b/examples/mesh_viewer/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.10.2 FATAL_ERROR) project(ignition-rendering-mesh-viewer) -find_package(ignition-rendering5 REQUIRED) +find_package(ignition-rendering6 REQUIRED) include_directories(SYSTEM ${PROJECT_BINARY_DIR} diff --git a/examples/mouse_picking/CMakeLists.txt b/examples/mouse_picking/CMakeLists.txt index 72d454caa..1268d0bf1 100644 --- a/examples/mouse_picking/CMakeLists.txt +++ b/examples/mouse_picking/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.10.2 FATAL_ERROR) project(ignition-rendering-mouse-picking) -find_package(ignition-rendering5 REQUIRED) +find_package(ignition-rendering6 REQUIRED) include_directories(SYSTEM ${PROJECT_BINARY_DIR} diff --git a/examples/ogre2_demo/CMakeLists.txt b/examples/ogre2_demo/CMakeLists.txt index d88ddd2d7..2ad666669 100644 --- a/examples/ogre2_demo/CMakeLists.txt +++ b/examples/ogre2_demo/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.5 FATAL_ERROR) project(ignition-rendering-ogre2-demo) -find_package(ignition-rendering5) +find_package(ignition-rendering6) include_directories(SYSTEM ${PROJECT_BINARY_DIR} diff --git a/examples/particles_demo/CMakeLists.txt b/examples/particles_demo/CMakeLists.txt index 45a53dda7..c03b334c7 100644 --- a/examples/particles_demo/CMakeLists.txt +++ b/examples/particles_demo/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.10.2 FATAL_ERROR) project(ignition-rendering-particles-demo) -find_package(ignition-rendering5 REQUIRED) +find_package(ignition-rendering6 REQUIRED) include_directories(SYSTEM ${PROJECT_BINARY_DIR} diff --git a/examples/render_pass/CMakeLists.txt b/examples/render_pass/CMakeLists.txt index ce3f04f2a..eec9ca335 100644 --- a/examples/render_pass/CMakeLists.txt +++ b/examples/render_pass/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.10.2 FATAL_ERROR) project(ignition-rendering-render-pass) -find_package(ignition-rendering5) +find_package(ignition-rendering6) find_package(GLUT REQUIRED) include_directories(SYSTEM ${GLUT_INCLUDE_DIRS}) diff --git a/examples/simple_demo/CMakeLists.txt b/examples/simple_demo/CMakeLists.txt index e0f6b604d..f182d176e 100644 --- a/examples/simple_demo/CMakeLists.txt +++ b/examples/simple_demo/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.10.2 FATAL_ERROR) project(ignition-rendering-simple-demo) -find_package(ignition-rendering5) +find_package(ignition-rendering6) find_package(GLUT REQUIRED) include_directories(SYSTEM ${GLUT_INCLUDE_DIRS}) diff --git a/examples/text_geom/CMakeLists.txt b/examples/text_geom/CMakeLists.txt index dddf3c308..6859c39df 100644 --- a/examples/text_geom/CMakeLists.txt +++ b/examples/text_geom/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.10.2 FATAL_ERROR) project(ignition-rendering-text-geom) -find_package(ignition-rendering5) +find_package(ignition-rendering6) find_package(GLUT REQUIRED) include_directories(SYSTEM ${GLUT_INCLUDE_DIRS}) diff --git a/examples/thermal_camera/CMakeLists.txt b/examples/thermal_camera/CMakeLists.txt index f58c99228..de0531a8f 100644 --- a/examples/thermal_camera/CMakeLists.txt +++ b/examples/thermal_camera/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.10.2 FATAL_ERROR) project(ignition-rendering-thermal-camera) -find_package(ignition-rendering5 REQUIRED) +find_package(ignition-rendering6 REQUIRED) include_directories(SYSTEM ${PROJECT_BINARY_DIR} diff --git a/examples/transform_control/CMakeLists.txt b/examples/transform_control/CMakeLists.txt index 03f46571f..ddeb66a91 100644 --- a/examples/transform_control/CMakeLists.txt +++ b/examples/transform_control/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.10.2 FATAL_ERROR) project(ignition-rendering-transform-control) -find_package(ignition-rendering5 REQUIRED) +find_package(ignition-rendering6 REQUIRED) include_directories(SYSTEM ${PROJECT_BINARY_DIR} diff --git a/examples/view_control/CMakeLists.txt b/examples/view_control/CMakeLists.txt index b66dcd0ab..e9334fe60 100644 --- a/examples/view_control/CMakeLists.txt +++ b/examples/view_control/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.10.2 FATAL_ERROR) project(ignition-rendering-view-control) -find_package(ignition-rendering5 REQUIRED) +find_package(ignition-rendering6 REQUIRED) find_package(GLUT REQUIRED) include_directories(SYSTEM ${GLUT_INCLUDE_DIRS}) diff --git a/tutorials/17_render_pass_tutorial.md b/tutorials/17_render_pass_tutorial.md index f63dd44d5..3d5e8e10d 100644 --- a/tutorials/17_render_pass_tutorial.md +++ b/tutorials/17_render_pass_tutorial.md @@ -23,7 +23,7 @@ Execute the example: You'll see: ```{.sh} -[Msg] Loading plugin [ignition-rendering5-ogre] +[Msg] Loading plugin [ignition-rendering6-ogre] Engine 'optix' is not supported =============================== TAB - Switch render engines diff --git a/tutorials/18_simple_demo_tutorial.md b/tutorials/18_simple_demo_tutorial.md index ccca9346c..373824769 100644 --- a/tutorials/18_simple_demo_tutorial.md +++ b/tutorials/18_simple_demo_tutorial.md @@ -23,7 +23,7 @@ Execute the example: You'll see: ```{.sh} -[Msg] Loading plugin [ignition-rendering5-ogre] +[Msg] Loading plugin [ignition-rendering6-ogre] Engine 'optix' is not supported =============================== TAB - Switch render engines diff --git a/tutorials/19_text_geom_tutorial.md b/tutorials/19_text_geom_tutorial.md index 6ccd25ae7..cad86252d 100644 --- a/tutorials/19_text_geom_tutorial.md +++ b/tutorials/19_text_geom_tutorial.md @@ -23,7 +23,7 @@ Execute the example: You'll see: ```{.sh} -[Msg] Loading plugin [ignition-rendering5-ogre] +[Msg] Loading plugin [ignition-rendering6-ogre] Engine 'optix' is not supported =============================== TAB - Switch render engines diff --git a/tutorials/20_particles_tutorial.md b/tutorials/20_particles_tutorial.md index dd7dac6dd..7a74e0eeb 100644 --- a/tutorials/20_particles_tutorial.md +++ b/tutorials/20_particles_tutorial.md @@ -23,7 +23,7 @@ Execute the example: You'll see: ```{.sh} -[Msg] Loading plugin [ignition-rendering5-ogre2] +[Msg] Loading plugin [ignition-rendering6-ogre2] =============================== TAB - Switch render engines ESC - Exit diff --git a/tutorials/21_heightmap.md b/tutorials/21_heightmap.md index 181f5f489..677ee5d30 100644 --- a/tutorials/21_heightmap.md +++ b/tutorials/21_heightmap.md @@ -25,7 +25,7 @@ Execute the example: You'll see: ```{.sh} -[Msg] Loading plugin [ignition-rendering5-ogre] +[Msg] Loading plugin [ignition-rendering6-ogre] [Msg] Loading heightmap: scene::Heightmap(65528) [Msg] Heightmap loaded. Process took 217 ms. ===============================