Skip to content

Commit

Permalink
Greedy ign- migrations
Browse files Browse the repository at this point in the history
Signed-off-by: methylDragon <[email protected]>
  • Loading branch information
methylDragon committed Jul 12, 2022
1 parent d7c1abd commit bebbd6c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)

gz_configure_project(
REPLACE_GZ_INCLUDE_PATH gz/launch
REPLACE_INCLUDE_PATH gz/launch
VERSION_SUFFIX)

#============================================================================
Expand Down
2 changes: 1 addition & 1 deletion plugins/sim_gui/SimGui.hh
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ namespace gz
/// <plugin name="gz::launch::SimGui"
/// filename="gz-launch-simgui">
///
/// <!-- Elements parsed by ign-launch -->
/// <!-- Elements parsed by gz-launch -->
///
/// <!-- Set window title. Defaults to "Gazebo" -->
/// <window_title>Custom window title</window_title>
Expand Down
12 changes: 6 additions & 6 deletions src/Manager_TEST.cc
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ class ManagerTest : public ::testing::Test
public:
ManagerTest(){}
#ifndef _WIN32
std::string testScriptPath = "/tmp/ign-launch.sh";
std::string testScriptPath = "/tmp/gz-launch.sh";
#else
std::string testScriptPath =
std::string(getenv("localappdata")) + "\\Temp\\ign-launch.bat";
std::string(getenv("localappdata")) + "\\Temp\\gz-launch.bat";
#endif
};

Expand Down Expand Up @@ -141,10 +141,10 @@ TEST_F(ManagerTest, RunEnvPre)
{
// Test that environment is applied regardless of order
#ifndef _WIN32
std::string testPath = "/tmp/ign-launch-env-test-pre";
std::string testPath = "/tmp/gz-launch-env-test-pre";
#else
std::string testPath =
std::string(getenv("localappdata")) + "\\Temp\\ign-launch-env-test-pre";
std::string(getenv("localappdata")) + "\\Temp\\gz-launch-env-test-pre";
#endif

if (gz::common::isFile(testPath))
Expand Down Expand Up @@ -179,10 +179,10 @@ TEST_F(ManagerTest, RunEnvPost)
{
// Test that environment is applied regardless of order
#ifndef _WIN32
std::string testPath = "/tmp/ign-launch-env-test-post";
std::string testPath = "/tmp/gz-launch-env-test-post";
#else
std::string testPath =
std::string(getenv("localappdata")) + "\\Temp\\ign-launch-env-test-post";
std::string(getenv("localappdata")) + "\\Temp\\gz-launch-env-test-post";
#endif

if (gz::common::isFile(testPath))
Expand Down
2 changes: 1 addition & 1 deletion src/cmd/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ target_link_libraries(gz PUBLIC
gz-common${GZ_COMMON_VER}::gz-common${GZ_COMMON_VER}
)

set(launch_executable ign-launch)
set(launch_executable gz-launch)
add_executable(${launch_executable} launch_main.cc)
target_link_libraries(${launch_executable}
gz
Expand Down

0 comments on commit bebbd6c

Please sign in to comment.