mirror of
https://github.com/loot/libloot-python.git
synced 2026-07-27 14:14:13 -07:00
Rename package and repository to libloot-python and module to loot
This commit is contained in:
+2
-2
@@ -22,8 +22,8 @@ along with LOOT. If not, see
|
||||
<https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef LOOT_API_PYTHON_CONVENIENCE
|
||||
#define LOOT_API_PYTHON_CONVENIENCE
|
||||
#ifndef LIBLOOT_PYTHON_CONVENIENCE
|
||||
#define LIBLOOT_PYTHON_CONVENIENCE
|
||||
|
||||
#include <memory>
|
||||
|
||||
|
||||
+2
-2
@@ -175,8 +175,8 @@ void bindFunctions(pybind11::module& module) {
|
||||
}
|
||||
}
|
||||
|
||||
PYBIND11_MODULE(loot_api, module) {
|
||||
module.doc() = "A Python module that wraps the LOOT API, generated by pybind11.";
|
||||
PYBIND11_MODULE(loot, module) {
|
||||
module.doc() = "A Python module that wraps libloot, generated by pybind11.";
|
||||
|
||||
loot::bindEnums(module);
|
||||
loot::bindClasses(module);
|
||||
|
||||
@@ -21,11 +21,11 @@
|
||||
along with LOOT. If not, see
|
||||
<https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
#ifndef LOOT_PLUGIN_CLEANLINESS
|
||||
#define LOOT_PLUGIN_CLEANLINESS
|
||||
#ifndef LIBLOOT_PYTHON_PLUGIN_CLEANLINESS
|
||||
#define LIBLOOT_PYTHON_PLUGIN_CLEANLINESS
|
||||
|
||||
/**
|
||||
* The namespace used by the LOOT API.
|
||||
* The namespace used by libloot.
|
||||
*/
|
||||
namespace loot {
|
||||
/**
|
||||
|
||||
+2
-2
@@ -21,8 +21,8 @@
|
||||
along with LOOT. If not, see
|
||||
<https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
#ifndef LOOT_PLUGIN_TAGS
|
||||
#define LOOT_PLUGIN_TAGS
|
||||
#ifndef LIBLOOT_PYTHON_PLUGIN_TAGS
|
||||
#define LIBLOOT_PYTHON_PLUGIN_TAGS
|
||||
|
||||
#include <set>
|
||||
#include <string>
|
||||
|
||||
@@ -22,8 +22,8 @@ along with LOOT. If not, see
|
||||
<https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef LOOT_API_PYTHON_WRAPPER_VERSION
|
||||
#define LOOT_API_PYTHON_WRAPPER_VERSION
|
||||
#ifndef LIBLOOT_PYTHON_WRAPPER_VERSION
|
||||
#define LIBLOOT_PYTHON_WRAPPER_VERSION
|
||||
|
||||
#include <string>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user