diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2016-07-30 13:34:41 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-07-30 17:24:28 +0200 |
commit | bd9b1fa4b6c20b7eedf7f96d9b9aae6ff5edfbfb (patch) | |
tree | 81bf71d660b88d668e9e7677cb8006a6270205a9 /build2/file | |
parent | 988fd0eec5d88bf6534fb1f645777350c20d4723 (diff) |
Construct paths to use canonical directory separators
Hardcoding separators as in "build/root.build" is now a big no-no.
Diffstat (limited to 'build2/file')
-rw-r--r-- | build2/file | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/build2/file b/build2/file index 062487a..f5dac83 100644 --- a/build2/file +++ b/build2/file @@ -27,6 +27,8 @@ namespace build2 extern const path root_file; // build/root.build extern const path bootstrap_file; // build/bootstrap.build extern const path src_root_file; // build/bootstrap/src-root.build + extern const path export_file; // build/export.build + extern const path config_file; // build/config.build bool is_src_root (const dir_path&); |