diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/Conf.hpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/Conf.hpp b/include/Conf.hpp index 7117087..1d714b6 100644 --- a/include/Conf.hpp +++ b/include/Conf.hpp @@ -139,6 +139,19 @@ namespace sibs CPP14, CPP17 }; + + enum class Language + { + NONE, + C, + CPP + }; + + struct SourceFile + { + Language language; + std::string filepath; + }; const StringView CONFIGS[] = { "config.win32", |