Updated the enable gem and disable gem API (#54)

* Updated the enable gem and disable gem API
Renamed remove_gem_project.py -> disable_gem.py
Renamed add_gem_project.py -> enable_gem.py
Renamed the "add-gem-to-project" command -> "enable-gem"
Renamed the "remove-gem-from-project" command -> "disable-gem"

Fixed the parsing of the enabled gems from the enabled_gems.cmake file

* Adding newline to the end of the CMakeLists.txt
This commit is contained in:
lumberyard-employee-dm
2021-05-27 16:44:50 -05:00
committed by GitHub
parent f9b2517ea3
commit 394ac7ab6a
11 changed files with 208 additions and 391 deletions
@@ -68,7 +68,7 @@ namespace O3DE::ProjectManager
AZStd::recursive_mutex m_lock;
pybind11::handle m_register;
pybind11::handle m_manifest;
pybind11::handle m_addGemProject;
pybind11::handle m_removeGemProject;
pybind11::handle m_enableGemProject;
pybind11::handle m_disableGemProject;
};
}