// -*- c++ -*- #pragma once #include #include //#include struct BuildConfiguration { std::string target; std::vector sources; std::vector depends; std::vector cxxflags; std::vector cflags; std::vector ldflags; }; std::vector configs(); void reg(const std::string& location);