Merge pull request #78063 from lawnjelly/scu_non_relative_paths

SCU build - make paths relative to project folder
This commit is contained in:
Rémi Verschelde 2023-06-14 11:13:16 +02:00
commit 838b19a1cc
No known key found for this signature in database
GPG Key ID: C3336907360768E1

View File

@ -51,7 +51,7 @@ def find_files_in_folder(folder, sub_folder, include_list, extension, sought_exc
if file.endswith(".gen.cpp"):
continue
li = '#include "../' + sub_folder_slashed + file + '"'
li = '#include "' + folder + "/" + sub_folder_slashed + file + '"'
if not simple_name in sought_exceptions:
include_list.append(li)