diff options
Diffstat (limited to 'src/ctor.h')
-rw-r--r-- | src/ctor.h | 25 |
1 files changed, 17 insertions, 8 deletions
@@ -10,6 +10,7 @@ #include <variant> #include <cstddef> #include <functional> +#include <string_view> namespace ctor { @@ -52,6 +53,14 @@ enum class arch unknown, //!< Target platform architecture has not yet detected or was not possible to detect }; +enum class toolchain +{ + any, + none, + gcc, + clang, +}; + struct source { constexpr source(const char* file) : file(file) {} // convenience ctor @@ -62,19 +71,19 @@ struct source constexpr source(std::string_view file, std::string_view output) : file(file), output(output) {} constexpr source(std::string_view file, ctor::language lang, std::string_view output) : file(file), language(lang), output(output) {} + constexpr source(ctor::toolchain toolchain, std::string_view file) : file(file), toolchain(toolchain) {} + constexpr source(ctor::toolchain toolchain, std::string_view file, ctor::language lang) : file(file), toolchain(toolchain), language(lang) {} + + constexpr source(ctor::toolchain toolchain, std::string_view file, std::string_view output) : file(file), toolchain(toolchain), output(output) {} + + constexpr source(ctor::toolchain toolchain, std::string_view file, ctor::language lang, std::string_view output) : file(file), toolchain(toolchain), language(lang), output(output) {} + std::string file; + ctor::toolchain toolchain{ctor::toolchain::any}; ctor::language language{ctor::language::automatic}; std::string output{}; }; -enum class toolchain -{ - any, - none, - gcc, - clang, -}; - enum class cxx_opt { // gcc/clang |