// -*- c++ -*- #pragma once #include enum class Tool { CCompiler, CppCompiler, Archiver, Linker, } std::string getTool(Tool tool);