diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2021-03-16 11:36:10 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2021-03-16 11:36:10 +0200 |
commit | 7a4f1ae238b918fe21671d0d1a5549aeb1fe6425 (patch) | |
tree | 6501d18854cc85644a3e73a857fda82b17b73c45 /tests/libbuild2 | |
parent | 99046d23d78d341674bbad3414567f362ffc60cd (diff) |
Define intermediate build results file cache interface
Diffstat (limited to 'tests/libbuild2')
-rw-r--r-- | tests/libbuild2/driver.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/libbuild2/driver.cxx b/tests/libbuild2/driver.cxx index a849a98..5d18623 100644 --- a/tests/libbuild2/driver.cxx +++ b/tests/libbuild2/driver.cxx @@ -6,6 +6,7 @@ #include <libbuild2/context.hxx> #include <libbuild2/scheduler.hxx> +#include <libbuild2/file-cache.hxx> #include <libbuild2/in/init.hxx> #include <libbuild2/bin/init.hxx> @@ -37,7 +38,8 @@ main (int, char* argv[]) // scheduler sched (1); global_mutexes mutexes (1); - context ctx (sched, mutexes); + file_cache fcache (sched); + context ctx (sched, mutexes, fcache); return 0; } |