Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cppython/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def write_root_presets(self, path: Path):
if root_model.include is not None:
for index, include_path in enumerate(root_model.include):
if Path(include_path).name == "cppython.json":
root_model.include[index] = "${sourceDir}/build" + path.as_posix()
root_model.include[index] = "${sourceDir}/build/" + path.as_posix()

# 'dict.update' wont apply to nested types, manual replacement
root_preset["include"] = root_model.include
Expand Down