File tree Expand file tree Collapse file tree 8 files changed +21
-17
lines changed
Expand file tree Collapse file tree 8 files changed +21
-17
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.22.1 FATAL_ERROR)
33#============================================================================
44# Initialize the project
55#============================================================================
6- project (gz-sensors9 VERSION 9 .0.0)
6+ project (gz-sensors10 VERSION 10 .0.0)
77
88#============================================================================
99# Find gz-cmake
@@ -16,7 +16,7 @@ find_package(gz-cmake4 REQUIRED)
1616set (CMAKE_CXX_STANDARD 17)
1717set (CMAKE_CXX_STANDARD_REQUIRED ON )
1818
19- gz_configure_project(VERSION_SUFFIX)
19+ gz_configure_project(VERSION_SUFFIX pre1 )
2020
2121#============================================================================
2222# Set project-specific options
Original file line number Diff line number Diff line change 1+ ## Gazebo Sensors 10
2+
3+ ### Gazebo Sensors 10.0.0 (20XX-XX-XX)
4+
15## Gazebo Sensors 9
26
37### Gazebo Sensors 9.0.0 (2024-09-25)
Original file line number Diff line number Diff line change 99
1010Build | Status
1111-- | --
12- Test coverage | [ ![ codecov] ( https://codecov.io/gh/gazebosim/gz-sensors/tree/gz-sensors9 /graph/badge.svg )] ( https://codecov.io/gh/gazebosim/gz-sensors/tree/gz-sensors9 )
13- Ubuntu Noble | [ ![ Build Status] ( https://build.osrfoundation.org/buildStatus/icon?job=gz_sensors-ci-gz-sensors9- noble-amd64 )] ( https://build.osrfoundation.org/job/gz_sensors-ci-gz-sensors9 -noble-amd64 )
14- Homebrew | [ ![ Build Status] ( https://build.osrfoundation.org/buildStatus/icon?job=gz_sensors-ci-gz-sensors9- homebrew-amd64 )] ( https://build.osrfoundation.org/job/gz_sensors-ci-gz-sensors9 -homebrew-amd64 )
15- Windows | [ ![ Build Status] ( https://build.osrfoundation.org/buildStatus/icon?job=gz_sensors-9 -win )] ( https://build.osrfoundation.org/job/gz_sensors-9 -win/ )
12+ Test coverage | [ ![ codecov] ( https://codecov.io/gh/gazebosim/gz-sensors/tree/main /graph/badge.svg )] ( https://codecov.io/gh/gazebosim/gz-sensors/tree/main )
13+ Ubuntu Noble | [ ![ Build Status] ( https://build.osrfoundation.org/buildStatus/icon?job=gz_sensors-ci-main- noble-amd64 )] ( https://build.osrfoundation.org/job/gz_sensors-ci-main -noble-amd64 )
14+ Homebrew | [ ![ Build Status] ( https://build.osrfoundation.org/buildStatus/icon?job=gz_sensors-ci-main- homebrew-amd64 )] ( https://build.osrfoundation.org/job/gz_sensors-ci-main -homebrew-amd64 )
15+ Windows | [ ![ Build Status] ( https://build.osrfoundation.org/buildStatus/icon?job=gz_sensors-main -win )] ( https://build.osrfoundation.org/job/gz_sensors-main -win/ )
1616
1717Gazebo Sensors, a component of [ Gazebo] ( https://gazebosim.org ) ,
1818provides numerous sensor models
Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ cmake_minimum_required(VERSION 3.22.1 FATAL_ERROR)
33project (odometer)
44
55find_package (gz-cmake4 REQUIRED)
6- find_package (gz-sensors9 REQUIRED)
6+ find_package (gz-sensors10 REQUIRED)
77
88add_library (${PROJECT_NAME} SHARED Odometer.cc)
99target_link_libraries (${PROJECT_NAME}
10- PUBLIC gz-sensors9 ::gz-sensors9 )
10+ PUBLIC gz-sensors10 ::gz-sensors10 )
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.5 FATAL_ERROR)
22project (gz-sensors-noise-demo)
33
44# Find the Gazebo Libraries used directly by the example
5- find_package (gz-sensors9 REQUIRED)
5+ find_package (gz-sensors10 REQUIRED)
66
77add_executable (sensor_noise main.cc)
8- target_link_libraries (sensor_noise PUBLIC gz-sensors9 )
8+ target_link_libraries (sensor_noise PUBLIC gz-sensors10 )
Original file line number Diff line number Diff line change 11cmake_minimum_required (VERSION 3.5 FATAL_ERROR)
22project (loop_sensor)
33
4- find_package (gz-sensors9 REQUIRED
4+ find_package (gz-sensors10 REQUIRED
55 # Find built-in sensors
66 COMPONENTS
77 altimeter
@@ -12,10 +12,10 @@ add_subdirectory(../custom_sensor odometer)
1212
1313add_executable (${PROJECT_NAME} main.cc)
1414target_link_libraries (${PROJECT_NAME} PUBLIC
15- gz-sensors9 ::gz-sensors9
15+ gz-sensors10 ::gz-sensors10
1616
1717 # Link to custom sensors
1818 odometer
1919
2020 # Link to built-in sensors
21- gz-sensors9 ::altimeter)
21+ gz-sensors10 ::altimeter)
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ project(gz-sensors-camera-demo)
33
44# Find the Gazebo Libraries used directly by the example
55find_package (gz-rendering9 REQUIRED OPTIONAL_COMPONENTS ogre ogre2)
6- find_package (gz-sensors9 REQUIRED COMPONENTS rendering camera)
6+ find_package (gz-sensors10 REQUIRED COMPONENTS rendering camera)
77
88if (TARGET gz-rendering9::ogre)
99 add_definitions (-DWITH_OGRE)
@@ -14,4 +14,4 @@ endif()
1414
1515add_executable (save_image main.cc)
1616target_link_libraries (save_image PUBLIC
17- gz-sensors9 ::camera)
17+ gz-sensors10 ::camera)
Original file line number Diff line number Diff line change 11<?xml version =" 1.0" ?>
22<?xml-model href =" http://download.ros.org/schema/package_format2.xsd" schematypens =" http://www.w3.org/2001/XMLSchema" ?>
33<package format =" 2" >
4- <name >gz-sensors9 </name >
5- <version >9 .0.0</version >
4+ <name >gz-sensors10 </name >
5+ <version >10 .0.0</version >
66 <description >Gazebo Sensors : Sensor models for simulation</description >
77 <
maintainer email =
" [email protected] " >Ian Chen</
maintainer >
88 <license >Apache License 2.0</license >
You can’t perform that action at this time.
0 commit comments