Merge pull request #4184 from aws-lumberyard-dev/LYN6729_AutogenWrongOutputFolder

LYN6729: Fix AzAutoGen to Output to Proper Path
This commit is contained in:
kberg-amzn
2021-09-17 13:49:50 -07:00
committed by GitHub
+2 -2
View File
@@ -71,10 +71,10 @@ def SearchPaths(filename, paths=[]):
return None
def ComputeOutputPath(inputFiles, projectDir, outputDir):
commonInputPath = os.path.commonprefix(inputFiles) # If we've globbed many source files, this finds the common prefix
commonInputPath = os.path.commonpath(inputFiles) # If we've globbed many source files, this finds the common path
if os.path.isfile(commonInputPath): # If the commonInputPath resolves to an actual file, slice off the filename
commonInputPath = os.path.dirname(commonInputPath)
commonPath = os.path.commonprefix([commonInputPath, projectDir]) # Finds the common path between the data source files and our project directory (//depot/dev/Code/Framework/AzCore/)
commonPath = os.path.commonpath([commonInputPath, projectDir]) # Finds the common path between the data source files and our project directory (//depot/dev/Code/Framework/AzCore/)
inputRelativePath = os.path.relpath(commonInputPath, commonPath) # Computes the relative path for the project source directory (Code/Framework/AzCore/AutoGen/)
return os.path.join(outputDir, inputRelativePath) # Returns a suitable output directory (//depot/dev/Generated/Code/Framework/AzCore/AutoGen/)