1 2 3 4 5 6 7 8 9 10 11 12 13 14
// -*- c++ -*- #pragma once #include <string> enum class Tool { CCompiler, CppCompiler, Archiver, Linker, } std::string getTool(Tool tool);