Removes _vs2019 from jenkins jobs and documentation (#5855)

Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
Esteban Papp
2021-11-30 11:10:02 -08:00
committed by GitHub
parent 879012b1ae
commit 7c30adb66c
17 changed files with 72 additions and 167 deletions
+2 -2
View File
@@ -35,8 +35,8 @@ INSTALL
It is recommended to set up these these tools with Lumberyard's CMake build commands.
Assuming CMake is already setup on your operating system, below are some sample build commands:
cd /path/to/lumberyard/dev/
mkdir windows_vs2019
cd windows_vs2019
mkdir windows
cd windows
cmake -E time cmake --build . --target ALL_BUILD --config profile
To manually install the project in development mode using your own installed Python interpreter:
@@ -277,7 +277,7 @@ class AbstractResourceLocator(object):
def get_shader_compiler_path(self):
"""
Return path to shader compiler executable
ex. engine_root/dev/windows_vs2019/bin/profile/CrySCompileServer
ex. engine_root/dev/windows/bin/profile/CrySCompileServer
:return: path to CrySCompileServer executable
"""
return os.path.join(self.build_directory(), 'CrySCompileServer')
@@ -313,7 +313,7 @@ class AbstractResourceLocator(object):
def shader_compiler_config_file(self):
"""
Return path to the Shader Compiler config file
ex. engine_root/dev/windows_vs2019/bin/profile/config.ini
ex. engine_root/dev/windows/bin/profile/config.ini
:return: path to the Shader Compiler config file
"""
return os.path.join(self.build_directory(), 'config.ini')
@@ -321,7 +321,7 @@ class AbstractResourceLocator(object):
def shader_cache(self):
"""
Return path to the shader cache for the current build
ex. engine_root/dev/windows_vs2019/bin/profile/Cache
ex. engine_root/dev/windows/bin/profile/Cache
:return: path to the shader cache for the current build
"""
return os.path.join(self.build_directory(), 'Cache')
@@ -119,7 +119,7 @@ class AbstractWorkspaceManager:
def clear_bin(self):
"""
Clears the relative Bin folder (i.e. engine_root/dev/windows_vs2019/bin/profile/)
Clears the relative Bin folder (i.e. engine_root/dev/windows/bin/profile/)
:return: None
"""
if os.path.exists(self.paths.build_directory()):
@@ -22,8 +22,7 @@ installed on your system.
INSTALL
-----------
It is recommended to set up these these tools with the lmbr_test tool Lumberyard's root directory:
lmbr_test pysetup install
Installation of these tools happen automatically when get_python and cmake is run.
To manually install the project in development mode:
python -m pip install -e .