From 3f117ba513d7f8ec8244103174f8635df7bd379b Mon Sep 17 00:00:00 2001 From: dec05eba Date: Thu, 20 Sep 2018 14:57:15 +0200 Subject: Use ninja library to generate build instead of raw string --- include/Conf.hpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'include') 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", -- cgit v1.2.3