summaryrefslogtreecommitdiffstats
path: root/scu_builders.py
diff options
context:
space:
mode:
authorlawnjelly <lawnjelly@gmail.com>2023-06-09 20:30:03 +0100
committerlawnjelly <lawnjelly@gmail.com>2023-06-09 20:30:03 +0100
commita7263d32fba7fcbcae18ae5f654556af7bca1188 (patch)
tree9abaffb8c17c4a08240d38439c36c4a41758b4df /scu_builders.py
parent300748e52c03fd1761b716fc7eea2b9fb97b86f9 (diff)
downloadredot-engine-a7263d32fba7fcbcae18ae5f654556af7bca1188.tar.gz
SCU build - make paths relative to project folder
Making paths relative to the project folder rather than the SCU directory helps make stack traces more readable.
Diffstat (limited to 'scu_builders.py')
-rw-r--r--scu_builders.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scu_builders.py b/scu_builders.py
index 98363929ae..b26cfc77c0 100644
--- a/scu_builders.py
+++ b/scu_builders.py
@@ -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)