-
Notifications
You must be signed in to change notification settings - Fork 277
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'gz-sim7' into mabelzhang/categorize_tutorials
- Loading branch information
Showing
36 changed files
with
253 additions
and
75 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
/* | ||
* Copyright (C) 2023 Open Source Robotics Foundation | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
*/ | ||
|
||
#ifndef GZ_SIM_INSTALLATION_DIRECTORIES_HH_ | ||
#define GZ_SIM_INSTALLATION_DIRECTORIES_HH_ | ||
|
||
#include <string> | ||
|
||
#include <gz/sim/config.hh> | ||
#include <gz/sim/Export.hh> | ||
|
||
namespace gz | ||
{ | ||
namespace sim | ||
{ | ||
inline namespace GZ_SIM_VERSION_NAMESPACE { | ||
|
||
/// \brief getInstallPrefix return the install prefix of the library | ||
/// i.e. CMAKE_INSTALL_PREFIX unless the library has been moved | ||
GZ_SIM_VISIBLE std::string getInstallPrefix(); | ||
|
||
/// \brief getGUIConfigPath return the GUI config path | ||
GZ_SIM_VISIBLE std::string getGUIConfigPath(); | ||
|
||
/// \brief getSystemConfigPath return the system config path | ||
GZ_SIM_VISIBLE std::string getSystemConfigPath(); | ||
|
||
/// \brief getServerConfigPath return the server config path | ||
GZ_SIM_VISIBLE std::string getServerConfigPath(); | ||
|
||
/// \brief getPluginInstallDir return the plugin install dir | ||
GZ_SIM_VISIBLE std::string getPluginInstallDir(); | ||
|
||
/// \brief getGUIPluginInstallDir return the GUI plugin install dir | ||
GZ_SIM_VISIBLE std::string getGUIPluginInstallDir(); | ||
|
||
/// \brief getWorldInstallDir return the world install dir | ||
GZ_SIM_VISIBLE std::string getWorldInstallDir(); | ||
} | ||
} | ||
} | ||
|
||
#endif |
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 |
---|---|---|
@@ -0,0 +1,67 @@ | ||
/* | ||
* Copyright (C) 2023 Open Source Robotics Foundation | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
*/ | ||
|
||
#include <gz/sim/config.hh> | ||
#include <gz/sim/InstallationDirectories.hh> | ||
|
||
#include <gz/common/Filesystem.hh> | ||
|
||
namespace gz | ||
{ | ||
namespace sim | ||
{ | ||
inline namespace GZ_SIM_VERSION_NAMESPACE { | ||
|
||
std::string getGUIConfigPath() | ||
{ | ||
return gz::common::joinPaths( | ||
getInstallPrefix(), GZ_SIM_GUI_CONFIG_RELATIVE_PATH); | ||
} | ||
|
||
std::string getSystemConfigPath() | ||
{ | ||
return gz::common::joinPaths( | ||
getInstallPrefix(), GZ_SIM_SYSTEM_CONFIG_RELATIVE_PATH); | ||
} | ||
|
||
std::string getServerConfigPath() | ||
{ | ||
return gz::common::joinPaths( | ||
getInstallPrefix(), GZ_SIM_SERVER_CONFIG_RELATIVE_PATH); | ||
} | ||
|
||
std::string getPluginInstallDir() | ||
{ | ||
return gz::common::joinPaths( | ||
getInstallPrefix(), GZ_SIM_PLUGIN_RELATIVE_INSTALL_DIR); | ||
} | ||
|
||
std::string getGUIPluginInstallDir() | ||
{ | ||
return gz::common::joinPaths( | ||
getInstallPrefix(), GZ_SIM_GUI_PLUGIN_RELATIVE_INSTALL_DIR); | ||
} | ||
|
||
std::string getWorldInstallDir() | ||
{ | ||
return gz::common::joinPaths( | ||
getInstallPrefix(), GZ_SIM_WORLD_RELATIVE_INSTALL_DIR); | ||
} | ||
|
||
} | ||
} | ||
} |
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
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
Oops, something went wrong.