Simplified the o3de package gem enable/disable logic

The add_gem_project and remove_gem project scripts, now just enables on
a gem name basis instead of a CMake target basis

Updated the ProjectManager code and scripts to account for the
add_gem_project and rmeove_gem_project script changes.
This commit is contained in:
lumberyard-employee-dm
2021-05-26 04:46:16 -05:00
parent 4652d47fb3
commit 922099050b
7 changed files with 165 additions and 595 deletions
@@ -591,7 +591,6 @@ namespace O3DE::ProjectManager
m_addGemProject.attr("add_gem_to_project")(
pybind11::none(), // gem_name
pyGemPath,
pybind11::none(), // gem_target
pybind11::none(), // project_name
pyProjectPath
);
@@ -609,7 +608,6 @@ namespace O3DE::ProjectManager
m_removeGemProject.attr("remove_gem_from_project")(
pybind11::none(), // gem_name
pyGemPath,
pybind11::none(), // gem_target
pybind11::none(), // project_name
pyProjectPath
);