diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2021-08-28 18:59:29 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2021-08-28 18:59:29 +0200 |
commit | 5da56616cccf4e595ec6a556cf1aef40b37746e3 (patch) | |
tree | 8142e294a251ca2ab1697f7541fe67dfd31622e0 /cppbuild.cc | |
parent | 0597cb9854d66d918762ff167148516b69c02e9a (diff) |
Move sources to ... well, src ;)
Diffstat (limited to 'cppbuild.cc')
-rw-r--r-- | cppbuild.cc | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/cppbuild.cc b/cppbuild.cc index c78def1..dc3ab19 100644 --- a/cppbuild.cc +++ b/cppbuild.cc @@ -10,17 +10,17 @@ BuildConfigurations cppbuildConfigs() .type = TargetType::StaticLibrary, .target = "libcppbuild.a", .sources = { - "build.cc", - "configure.cc", - "execute.cc", - "libcppbuild.cc", - "rebuild.cc", - "task.cc", - "task_ar.cc", - "task_cc.cc", - "task_ld.cc", - "task_so.cc", - "tasks.cc", + "src/build.cc", + "src/configure.cc", + "src/execute.cc", + "src/libcppbuild.cc", + "src/rebuild.cc", + "src/task.cc", + "src/task_ar.cc", + "src/task_cc.cc", + "src/task_ld.cc", + "src/task_so.cc", + "src/tasks.cc", }, .cxxflags = { "-std=c++17", |