Skip to content

Commit 440835c

Browse files
committed
Norm include paths for windows build when read from cfg file
1 parent b0a6243 commit 440835c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pygccxml/parser/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ def load_xml_generator_configuration(configuration, **defaults):
397397
for p in value.split(';'):
398398
p = p.strip()
399399
if p:
400-
cfg.include_paths.append(p)
400+
cfg.include_paths.append(os.path.normpath(p))
401401
elif name == 'compiler':
402402
cfg.compiler = value
403403
elif name == 'xml_generator':

0 commit comments

Comments
 (0)