Skip to content

Commit

Permalink
Proper escape Windows path \include in generator.py
Browse files Browse the repository at this point in the history
Change-Id: I9042de7e9cb08c247b7bf21a8de2b8cbceb483da
Signed-off-by: Galantsev, Dmitrii <[email protected]>
  • Loading branch information
Michael John authored and dmitrii-galantsev committed Sep 16, 2024
1 parent d9ccc44 commit d75d127
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def main():

os_platform = platform.system()
if os_platform == "Windows":
clang_include_dir += "\include"
clang_include_dir += "\\include"
if "Program Files(x86)" in clang_include_dir:
clang_include_dir = clang_include_dir.replace("Program Files(x86)", "Progra~2")
elif "Program Files" in clang_include_dir:
Expand Down

0 comments on commit d75d127

Please sign in to comment.