diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2021-06-19 14:10:36 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2021-06-19 14:10:36 +0200 |
commit | 154ce9b1ce22532a68f95f2291fa12fd90c49fde (patch) | |
tree | 602a5d927c79fbdfa0972136eb00d9570f0df480 /task_cc.cc | |
parent | 330336c28507e0ee3a77d20e03dbc994618c213c (diff) |
Make sources relative to the build-file (include paths are still relative to project rootdir). Add -b to control build-dir.
Diffstat (limited to 'task_cc.cc')
-rw-r--r-- | task_cc.cc | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -84,12 +84,13 @@ std::vector<std::string> readDeps(const std::string& depFile) } // namespace :: TaskCC::TaskCC(const BuildConfiguration& config, const Settings& settings, - const std::string& source) + const std::string& sourceDir, const std::string& source) : Task({}) , config(config) , settings(settings) { - sourceFile = source; + sourceFile = sourceDir; + sourceFile /= source; targetFile = settings.builddir / sourceFile.stem(); targetFile += ".o"; |