1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#include "toolchain.h" #include "libcppbuild.h" std::string getTool(Tool tool) { auto prefix = getConfiguration("prefix"); switch(tool) { case Tool::CCompiler: case Tool::CppCompiler: case Tool::Archiver: case Tool::Linker: break; } }