From 6b039aeac07a5ff69e5bb5266202dfa0e6c26c82 Mon Sep 17 00:00:00 2001 From: Abdelrahman Said Date: Sun, 20 Apr 2025 16:47:11 +0100 Subject: [PATCH] Use posix path separator for codegen even on Windows --- codegen/dbl_list/make_dbl_list.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codegen/dbl_list/make_dbl_list.py b/codegen/dbl_list/make_dbl_list.py index 56b29f1..5524ba4 100644 --- a/codegen/dbl_list/make_dbl_list.py +++ b/codegen/dbl_list/make_dbl_list.py @@ -57,7 +57,7 @@ def make_dbl_list(user_datatypes: Dict[CDataType, DblListData] = {}): for local_file in common_local_include_files: common_includes.append( CInclude( - header=str(convert_to_relative(local_file, out_dir)), + header=str(convert_to_relative(local_file, out_dir)).replace("\\", "/"), local=True, ) )