Use posix path separator for codegen even on Windows
This commit is contained in:
parent
2ab3bfc2e1
commit
6b039aeac0
@ -57,7 +57,7 @@ def make_dbl_list(user_datatypes: Dict[CDataType, DblListData] = {}):
|
|||||||
for local_file in common_local_include_files:
|
for local_file in common_local_include_files:
|
||||||
common_includes.append(
|
common_includes.append(
|
||||||
CInclude(
|
CInclude(
|
||||||
header=str(convert_to_relative(local_file, out_dir)),
|
header=str(convert_to_relative(local_file, out_dir)).replace("\\", "/"),
|
||||||
local=True,
|
local=True,
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user