// file : tests/libbuild2/driver.cxx -*- C++ -*- // copyright : Copyright (c) 2014-2019 Code Synthesis Ltd // license : MIT; see accompanying LICENSE file #include #include #include // sched, reset() #include #include #include using namespace build2; int main (int, char* argv[]) { // Fake build system driver, default verbosity. // init_diag (1); init (argv[0]); version::build2_version_load (); in::build2_in_load (); sched.startup (1); // Serial execution. reset (strings ()); // No command line variables. return 0; }