diff options
author | dec05eba <dec05eba@protonmail.com> | 2018-09-20 14:57:15 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2020-07-06 07:39:33 +0200 |
commit | 3f117ba513d7f8ec8244103174f8635df7bd379b (patch) | |
tree | fb4d975158a733bae1f11ec399a667e1cc9dfd0f /include | |
parent | 078fe50351224d28592f1b2907585bd4fa551adf (diff) |
Use ninja library to generate build instead of raw string
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", |