// -*- c++ -*- // Distributed under the BSD 2-Clause License. // See accompanying file LICENSE for details. #pragma once #include #include #include #include #include "ctor.h" struct BuildConfigurationEntry { std::string file; std::function cb; }; std::vector& getConfigFileList(); struct ExternalConfigurationEntry { std::string file; std::function cb; }; std::vector& getExternalConfigFileList(); int reg(const char* location); int unreg(const char* location); //! Returns true of recompilation was needed. bool recompileCheck(const ctor::settings& settings, int argc, char* argv[], bool relaunch_allowed = true);