aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2018-09-20 14:57:15 +0200
committerdec05eba <dec05eba@protonmail.com>2020-07-06 07:39:33 +0200
commit3f117ba513d7f8ec8244103174f8635df7bd379b (patch)
treefb4d975158a733bae1f11ec399a667e1cc9dfd0f /include
parent078fe50351224d28592f1b2907585bd4fa551adf (diff)
Use ninja library to generate build instead of raw string
Diffstat (limited to 'include')
-rw-r--r--include/Conf.hpp13
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",