diff options
Diffstat (limited to 'toolchain.h')
-rw-r--r-- | toolchain.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/toolchain.h b/toolchain.h new file mode 100644 index 0000000..d3de9a1 --- /dev/null +++ b/toolchain.h @@ -0,0 +1,14 @@ +// -*- c++ -*- +#pragma once + +#include <string> + +enum class Tool +{ + CCompiler, + CppCompiler, + Archiver, + Linker, +} + +std::string getTool(Tool tool); |