File tree Expand file tree Collapse file tree 7 files changed +17
-13
lines changed Expand file tree Collapse file tree 7 files changed +17
-13
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)
3
3
#============================================================================
4
4
# Initialize the project
5
5
#============================================================================
6
- project (gz-plugin3 VERSION 3 .0.0 )
6
+ project (gz-plugin4 VERSION 4 .0.0 )
7
7
8
8
#============================================================================
9
9
# Find gz-cmake
@@ -17,7 +17,7 @@ set(GZ_CMAKE_VER ${gz-cmake4_VERSION_MAJOR})
17
17
set (CMAKE_CXX_STANDARD 17 )
18
18
set (CMAKE_CXX_STANDARD_REQUIRED ON )
19
19
20
- gz_configure_project ()
20
+ gz_configure_project (VERSION_SUFFIX pre1 )
21
21
22
22
#============================================================================
23
23
# Set project-specific options
Original file line number Diff line number Diff line change
1
+ ## Gazebo Plugin 4.x
2
+
3
+ ### Gazebo Plugin 4.0.0 (20XX-XX-XX)
4
+
1
5
## Gazebo Plugin 3.x
2
6
3
7
### Gazebo Plugin 3.0.0 (2024-08-27)
Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ cmake_minimum_required(VERSION 3.22.1 FATAL_ERROR)
2
2
3
3
project (examples )
4
4
5
- find_package (gz-plugin3 QUIET REQUIRED COMPONENTS all )
6
- set (GZ_PLUGIN_VER ${gz-plugin3_VERSION_MAJOR } )
5
+ find_package (gz-plugin4 QUIET REQUIRED COMPONENTS all )
6
+ set (GZ_PLUGIN_VER ${gz-plugin4_VERSION_MAJOR } )
7
7
8
8
find_package (gz-common6 QUIET )
9
9
set (GZ_COMMON_VER ${gz-common6_VERSION_MAJOR} )
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ set(gz_library_path "${CMAKE_BINARY_DIR}/test/lib/$<CONFIG>/ruby/gz/cmd${GZ_DESI
3
3
4
4
# Generate a configuration file for internal testing.
5
5
# Note that the major version of the library is included in the name.
6
- # Ex: plugin3 .yaml
6
+ # Ex: plugin4 .yaml
7
7
configure_file (
8
8
"${GZ_DESIGNATION} .yaml.in"
9
9
"${CMAKE_CURRENT_BINARY_DIR} /${GZ_DESIGNATION}${PROJECT_VERSION_MAJOR} .yaml.configured" @ONLY )
@@ -17,7 +17,7 @@ set(gz_library_path "${CMAKE_INSTALL_PREFIX}/lib/ruby/gz/cmd${GZ_DESIGNATION}${P
17
17
18
18
# Generate the configuration file that is installed.
19
19
# Note that the major version of the library is included in the name.
20
- # Ex: plugin3 .yaml
20
+ # Ex: plugin4 .yaml
21
21
configure_file (
22
22
"${GZ_DESIGNATION} .yaml.in"
23
23
"${CMAKE_CURRENT_BINARY_DIR} /${GZ_DESIGNATION}${PROJECT_VERSION_MAJOR} .yaml" @ONLY )
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ install(
24
24
#===============================================================================
25
25
# Generate the ruby script for internal testing.
26
26
# Note that the major version of the library is included in the name.
27
- # Ex: cmdplugin3 .rb
27
+ # Ex: cmdplugin4 .rb
28
28
set (cmd_script_generated_test "${CMAKE_BINARY_DIR} /test/lib/$<CONFIG>/ruby/gz/cmd${GZ_DESIGNATION}${PROJECT_VERSION_MAJOR} .rb" )
29
29
set (cmd_script_configured_test "${CMAKE_CURRENT_BINARY_DIR} /test_cmd${GZ_DESIGNATION}${PROJECT_VERSION_MAJOR} .rb.configured" )
30
30
@@ -46,7 +46,7 @@ file(GENERATE
46
46
# Used for the installed version.
47
47
# Generate the ruby script that gets installed.
48
48
# Note that the major version of the library is included in the name.
49
- # Ex: cmdplugin3 .rb
49
+ # Ex: cmdplugin4 .rb
50
50
set (cmd_script_generated "${CMAKE_CURRENT_BINARY_DIR} /$<CONFIG>/cmd${GZ_DESIGNATION}${PROJECT_VERSION_MAJOR} .rb" )
51
51
set (cmd_script_configured "${CMAKE_CURRENT_BINARY_DIR} /cmd${GZ_DESIGNATION}${PROJECT_VERSION_MAJOR} .rb.configured" )
52
52
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" ?>
2
2
<?xml-model href =" http://download.ros.org/schema/package_format2.xsd" schematypens =" http://www.w3.org/2001/XMLSchema" ?>
3
3
<package format =" 2" >
4
- <name >gz-plugin3 </name >
5
- <version >3 .0.0</version >
4
+ <name >gz-plugin4 </name >
5
+ <version >4 .0.0</version >
6
6
<description >Gazebo Plugin : Cross-platform C++ library for dynamically loading plugins.</description >
7
7
<maintainer email =" ahcorde@gmail.com" >Alejandro Hernández Cordero</maintainer >
8
8
<license >Apache License 2.0</license >
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ wget http://packages.osrfoundation.org/gazebo.key -O - | sudo apt-key add -
35
35
On Ubuntu systems, ` apt-get ` can be used to install ` gz-plugin ` :
36
36
``` bash
37
37
sudo apt-get update
38
- sudo apt install libgz-plugin3 -dev
38
+ sudo apt install libgz-plugin4 -dev
39
39
```
40
40
41
41
## Source Installation
@@ -91,15 +91,15 @@ Sierra (10.12) or later.
91
91
2 . Run the following commands
92
92
``` bash
93
93
brew tap osrf/simulation
94
- brew install gz-plugin3
94
+ brew install gz-plugin4
95
95
```
96
96
97
97
## Source Installation
98
98
99
99
1 . Install dependencies
100
100
``` bash
101
101
brew tap osrf/simulation
102
- brew install gz-plugin3 --only-dependencies
102
+ brew install gz-plugin4 --only-dependencies
103
103
```
104
104
105
105
2 . Clone the repository
You can’t perform that action at this time.
0 commit comments