From f3d264292654eba10a2693fa195cc4b1d0a6103f Mon Sep 17 00:00:00 2001 From: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com> Date: Wed, 19 May 2021 00:54:31 -0500 Subject: [PATCH] Added an installation of the scripts/o3de folder as a local package for the o3de python that is installed through cmake --- cmake/LYPython.cmake | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmake/LYPython.cmake b/cmake/LYPython.cmake index 546d5f66db..a7c18e4dbe 100644 --- a/cmake/LYPython.cmake +++ b/cmake/LYPython.cmake @@ -270,6 +270,8 @@ if (NOT CMAKE_SCRIPT_MODE_FILE) ly_pip_install_local_package_editable(${LY_ROOT_FOLDER}/Tools/RemoteConsole/ly_remote_console ly-remote-console) ly_pip_install_local_package_editable(${LY_ROOT_FOLDER}/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools editor-python-test-tools) endif() + + ly_pip_install_local_package_editable(${LY_ROOT_FOLDER}/scripts/o3de o3de) endif() endif()