Skip to content

Commit

Permalink
Bumps in garden : ign-gui7 (#385)
Browse files Browse the repository at this point in the history
Signed-off-by: methylDragon <[email protected]>
Signed-off-by: Louise Poubel <[email protected]>

Co-authored-by: Louise Poubel <[email protected]>
  • Loading branch information
methylDragon and chapulina authored Apr 14, 2022
1 parent 57894fc commit 47bddfc
Show file tree
Hide file tree
Showing 24 changed files with 31 additions and 25 deletions.
3 changes: 2 additions & 1 deletion .github/ci/packages.apt
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ libignition-cmake2-dev
libignition-common5-dev
libignition-math7-dev
libignition-msgs9-dev
libignition-plugin-dev
libignition-plugin2-dev
libignition-rendering7-dev
libignition-tools-dev
libignition-transport12-dev
libignition-utils2-dev
libprotobuf-dev
libprotoc-dev
libtinyxml2-dev
Expand Down
9 changes: 7 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,11 @@ ign_find_package(IgnProtobuf
# Find Tinyxml2
ign_find_package(TINYXML2 REQUIRED PRIVATE PRETTY tinyxml2)

#--------------------------------------
# Find ignition-utils
ign_find_package(ignition-utils2 REQUIRED)
set(IGN_UTILS_VER ${ignition-utils2_VERSION_MAJOR})

#--------------------------------------
# Find ignition-math
ign_find_package(ignition-math7 REQUIRED)
Expand All @@ -49,8 +54,8 @@ set(IGN_COMMON_VER ${ignition-common5_VERSION_MAJOR})

#--------------------------------------
# Find ignition-plugin
ign_find_package(ignition-plugin1 REQUIRED COMPONENTS loader register)
set(IGN_PLUGIN_VER ${ignition-plugin1_VERSION_MAJOR})
ign_find_package(ignition-plugin2 REQUIRED COMPONENTS loader register)
set(IGN_PLUGIN_VER ${ignition-plugin2_VERSION_MAJOR})

#--------------------------------------
# Find ignition-transport
Expand Down
2 changes: 1 addition & 1 deletion src/Application_TEST.cc
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#include <stdlib.h>
#include <gtest/gtest.h>
#include <ignition/common/Console.hh>
#include <ignition/utilities/ExtraTestMacros.hh>
#include <ignition/utils/ExtraTestMacros.hh>

#include "test_config.h" // NOLINT(build/include)
#include "ignition/gui/Application.hh"
Expand Down
2 changes: 1 addition & 1 deletion src/Helpers_TEST.cc
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#include <gtest/gtest.h>

#include <ignition/math/Helpers.hh>
#include <ignition/utilities/ExtraTestMacros.hh>
#include <ignition/utils/ExtraTestMacros.hh>

#include "test_config.h" // NOLINT(build/include)
#include "ignition/gui/Application.hh"
Expand Down
2 changes: 1 addition & 1 deletion src/MainWindow_TEST.cc
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
#include <ignition/msgs/boolean.pb.h>
#include <ignition/msgs/server_control.pb.h>
#include <ignition/transport/Node.hh>
#include <ignition/utilities/ExtraTestMacros.hh>
#include <ignition/utils/ExtraTestMacros.hh>

#include "test_config.h" // NOLINT(build/include)
#include "ignition/gui/Application.hh"
Expand Down
2 changes: 1 addition & 1 deletion src/PlottingInterface_TEST.cc
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

#include <ignition/transport.hh>
#include <ignition/common/Console.hh>
#include <ignition/utilities/ExtraTestMacros.hh>
#include <ignition/utils/ExtraTestMacros.hh>
#include "test_config.h" // NOLINT(build/include)
#include "ignition/gui/Enums.hh"
#include "ignition/gui/PlottingInterface.hh"
Expand Down
2 changes: 1 addition & 1 deletion src/Plugin_TEST.cc
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#include <gtest/gtest.h>

#include <ignition/common/Console.hh>
#include <ignition/utilities/ExtraTestMacros.hh>
#include <ignition/utils/ExtraTestMacros.hh>

#include "test_config.h" // NOLINT(build/include)
#include "ignition/gui/Application.hh"
Expand Down
2 changes: 1 addition & 1 deletion src/ign_TEST.cc
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

#include <ignition/common/Filesystem.hh>
#include <ignition/common/Util.hh>
#include <ignition/utilities/ExtraTestMacros.hh>
#include <ignition/utils/ExtraTestMacros.hh>

#include "test_config.h" // NOLINT(build/include)

Expand Down
2 changes: 1 addition & 1 deletion src/plugins/plotting/TransportPlotting.hh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

#include <ignition/gui/Plugin.hh>
#include <ignition/gui/PlottingInterface.hh>
#include <ignition/utilities/SuppressWarning.hh>
#include <ignition/utils/SuppressWarning.hh>

#include <memory>

Expand Down
2 changes: 1 addition & 1 deletion src/plugins/point_cloud/PointCloud_TEST.cc
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

#include <ignition/common/Console.hh>
#include <ignition/common/Filesystem.hh>
#include <ignition/utilities/ExtraTestMacros.hh>
#include <ignition/utils/ExtraTestMacros.hh>

#include "test_config.h" // NOLINT(build/include)
#include "ignition/gui/Application.hh"
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/publisher/Publisher_TEST.cc
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#pragma warning(pop)
#endif
#include <ignition/transport/Node.hh>
#include <ignition/utilities/ExtraTestMacros.hh>
#include <ignition/utils/ExtraTestMacros.hh>

#include "test_config.h" // NOLINT(build/include)
#include "ignition/gui/Application.hh"
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/screenshot/Screenshot_TEST.cc
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#include <ignition/common/Console.hh>
#include <ignition/common/Filesystem.hh>
#include <ignition/transport/Node.hh>
#include <ignition/utilities/ExtraTestMacros.hh>
#include <ignition/utils/ExtraTestMacros.hh>

#include "test_config.h" // NOLINT(build/include)
#include "ignition/gui/Application.hh"
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/shutdown_button/ShutdownButton_TEST.cc
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

#include <ignition/common/Console.hh>
#include <ignition/transport/Node.hh>
#include <ignition/utilities/ExtraTestMacros.hh>
#include <ignition/utils/ExtraTestMacros.hh>

#include "test_config.h" // NOLINT(build/include)
#include "ignition/gui/Application.hh"
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/teleop/Teleop_TEST.cc
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#pragma warning(pop)
#endif

#include <ignition/utilities/ExtraTestMacros.hh>
#include <ignition/utils/ExtraTestMacros.hh>

#include "test_config.h" // NOLINT(build/include)
#include "ignition/gui/Application.hh"
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/topic_viewer/TopicViewer_TEST.cc
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

#include <ignition/common/Console.hh>
#include <ignition/transport/Node.hh>
#include <ignition/utilities/ExtraTestMacros.hh>
#include <ignition/utils/ExtraTestMacros.hh>

#include "test_config.h" // NOLINT(build/include)
#include "ignition/gui/Application.hh"
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/world_control/WorldControl_TEST.cc
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

#include <ignition/common/Console.hh>
#include <ignition/transport/Node.hh>
#include <ignition/utilities/ExtraTestMacros.hh>
#include <ignition/utils/ExtraTestMacros.hh>

#include "test_config.h" // NOLINT(build/include)
#include "ignition/gui/Application.hh"
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/world_stats/WorldStats_TEST.cc
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

#include <ignition/common/Console.hh>
#include <ignition/transport/Node.hh>
#include <ignition/utilities/ExtraTestMacros.hh>
#include <ignition/utils/ExtraTestMacros.hh>

#include "test_config.h" // NOLINT(build/include)
#include "ignition/gui/Application.hh"
Expand Down
2 changes: 1 addition & 1 deletion test/integration/ExamplesBuild_TEST.cc
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

#include <ignition/common/Console.hh>
#include <ignition/common/Filesystem.hh>
#include <ignition/utilities/ExtraTestMacros.hh>
#include <ignition/utils/ExtraTestMacros.hh>

#include "test_config.h" // NOLINT(build/include)

Expand Down
2 changes: 1 addition & 1 deletion test/integration/Examples_TEST.cc
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

#include <ignition/common/Console.hh>
#include <ignition/common/Filesystem.hh>
#include <ignition/utilities/ExtraTestMacros.hh>
#include <ignition/utils/ExtraTestMacros.hh>

#include "test_config.h" // NOLINT(build/include)
#include "ignition/gui/Application.hh"
Expand Down
2 changes: 1 addition & 1 deletion test/integration/camera_tracking.cc
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
#include <ignition/rendering/RenderingIface.hh>
#include <ignition/rendering/Scene.hh>
#include <ignition/transport/Node.hh>
#include <ignition/utilities/ExtraTestMacros.hh>
#include <ignition/utils/ExtraTestMacros.hh>

#include "test_config.h" // NOLINT(build/include)
#include "ignition/gui/Application.hh"
Expand Down
2 changes: 1 addition & 1 deletion test/integration/marker_manager.cc
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#include <ignition/common/Console.hh>
#include <ignition/common/Filesystem.hh>
#include <ignition/transport/Node.hh>
#include <ignition/utilities/ExtraTestMacros.hh>
#include <ignition/utils/ExtraTestMacros.hh>

#include "test_config.h" // NOLINT(build/include)
#include "ignition/gui/Application.hh"
Expand Down
2 changes: 1 addition & 1 deletion test/integration/minimal_scene.cc
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#include <ignition/rendering/RenderEngine.hh>
#include <ignition/rendering/RenderingIface.hh>
#include <ignition/rendering/Scene.hh>
#include <ignition/utilities/ExtraTestMacros.hh>
#include <ignition/utils/ExtraTestMacros.hh>

#include "test_config.h" // NOLINT(build/include)
#include "../helpers/TestHelper.hh"
Expand Down
2 changes: 1 addition & 1 deletion test/integration/scene3d.cc
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#include <ignition/rendering/RenderEngine.hh>
#include <ignition/rendering/RenderingIface.hh>
#include <ignition/rendering/Scene.hh>
#include <ignition/utilities/ExtraTestMacros.hh>
#include <ignition/utils/ExtraTestMacros.hh>

#include "test_config.h" // NOLINT(build/include)
#include "../helpers/TestHelper.hh"
Expand Down
2 changes: 1 addition & 1 deletion test/integration/transport_scene_manager.cc
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
#include <ignition/rendering/RenderingIface.hh>
#include <ignition/rendering/Scene.hh>
#include <ignition/transport/Node.hh>
#include <ignition/utilities/ExtraTestMacros.hh>
#include <ignition/utils/ExtraTestMacros.hh>

#include "test_config.h" // NOLINT(build/include)
#include "../helpers/TestHelper.hh"
Expand Down

0 comments on commit 47bddfc

Please sign in to comment.