-
Notifications
You must be signed in to change notification settings - Fork 269
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Louise Poubel <[email protected]> Signed-off-by: methylDragon <[email protected]> Co-authored-by: methylDragon <[email protected]>
- Loading branch information
1 parent
caa20c1
commit b559eb6
Showing
420 changed files
with
1,597 additions
and
1,464 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
cmake_minimum_required(VERSION 3.10.2 FATAL_ERROR) | ||
|
||
find_package(ignition-cmake3 REQUIRED) | ||
find_package(gz-cmake3 REQUIRED) | ||
|
||
project(CommandActor) | ||
|
||
find_package(ignition-plugin2 REQUIRED COMPONENTS register) | ||
set(IGN_PLUGIN_VER ${ignition-plugin2_VERSION_MAJOR}) | ||
find_package(gz-plugin2 REQUIRED COMPONENTS register) | ||
set(GZ_PLUGIN_VER ${gz-plugin2_VERSION_MAJOR}) | ||
|
||
find_package(ignition-gazebo7 REQUIRED) | ||
find_package(gz-sim7 REQUIRED) | ||
add_library(CommandActor SHARED CommandActor.cc) | ||
set_property(TARGET CommandActor PROPERTY CXX_STANDARD 17) | ||
target_link_libraries(CommandActor | ||
PRIVATE ignition-plugin${IGN_PLUGIN_VER}::ignition-plugin${IGN_PLUGIN_VER} | ||
PRIVATE ignition-gazebo7::ignition-gazebo7) | ||
PRIVATE gz-plugin${GZ_PLUGIN_VER}::gz-plugin${GZ_PLUGIN_VER} | ||
PRIVATE gz-sim7::gz-sim7) |
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,17 +1,17 @@ | ||
cmake_minimum_required(VERSION 3.10.2 FATAL_ERROR) | ||
|
||
find_package(ignition-cmake3 REQUIRED) | ||
find_package(gz-cmake3 REQUIRED) | ||
|
||
project(CustomComponentPlugin) | ||
|
||
find_package(ignition-plugin2 REQUIRED COMPONENTS register) | ||
set(IGN_PLUGIN_VER ${ignition-plugin2_VERSION_MAJOR}) | ||
find_package(gz-plugin2 REQUIRED COMPONENTS register) | ||
set(GZ_PLUGIN_VER ${gz-plugin2_VERSION_MAJOR}) | ||
|
||
find_package(ignition-gazebo7 REQUIRED) | ||
find_package(gz-sim7 REQUIRED) | ||
add_library(CustomComponentPlugin SHARED | ||
CustomComponentPlugin.cc | ||
) | ||
set_property(TARGET CustomComponentPlugin PROPERTY CXX_STANDARD 17) | ||
target_link_libraries(CustomComponentPlugin | ||
PRIVATE ignition-plugin${IGN_PLUGIN_VER}::ignition-plugin${IGN_PLUGIN_VER} | ||
PRIVATE ignition-gazebo7::ignition-gazebo7) | ||
PRIVATE gz-plugin${GZ_PLUGIN_VER}::gz-plugin${GZ_PLUGIN_VER} | ||
PRIVATE gz-sim7::gz-sim7) |
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,17 +1,17 @@ | ||
cmake_minimum_required(VERSION 3.10.2 FATAL_ERROR) | ||
|
||
find_package(ignition-cmake3 REQUIRED) | ||
find_package(gz-cmake3 REQUIRED) | ||
|
||
project(Hello_world) | ||
|
||
gz_find_package(ignition-plugin2 REQUIRED COMPONENTS register) | ||
set(IGN_PLUGIN_VER ${ignition-plugin2_VERSION_MAJOR}) | ||
gz_find_package(gz-plugin2 REQUIRED COMPONENTS register) | ||
set(GZ_PLUGIN_VER ${gz-plugin2_VERSION_MAJOR}) | ||
|
||
gz_find_package(ignition-gazebo7 REQUIRED) | ||
set(IGN_GAZEBO_VER ${ignition-gazebo7_VERSION_MAJOR}) | ||
gz_find_package(gz-sim7 REQUIRED) | ||
set(GZ_SIM_VER ${gz-sim7_VERSION_MAJOR}) | ||
|
||
add_library(HelloWorld SHARED HelloWorld) | ||
set_property(TARGET HelloWorld PROPERTY CXX_STANDARD 17) | ||
target_link_libraries(HelloWorld | ||
PRIVATE ignition-plugin${IGN_PLUGIN_VER}::ignition-plugin${IGN_PLUGIN_VER} | ||
PRIVATE ignition-gazebo${IGN_GAZEBO_VER}::ignition-gazebo${IGN_GAZEBO_VER}) | ||
PRIVATE gz-plugin${GZ_PLUGIN_VER}::gz-plugin${GZ_PLUGIN_VER} | ||
PRIVATE gz-sim${GZ_SIM_VER}::gz-sim${GZ_SIM_VER}) |
Oops, something went wrong.