diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2021-10-14 22:19:26 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2021-10-14 22:19:26 +0200 |
commit | c0eacf8e85003844b95e71b9004fa464d4586a38 (patch) | |
tree | a407dc8ec3830cb01faf3d5153c8741f9b19e1c1 /src/libctor.h | |
parent | 87aad8c76eb2371720c9aceef7516ecb0859ecdf (diff) |
Use dependency system and build system for compiling ctor on config changes.
Diffstat (limited to 'src/libctor.h')
-rw-r--r-- | src/libctor.h | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/src/libctor.h b/src/libctor.h index 6026ffb..5c22614 100644 --- a/src/libctor.h +++ b/src/libctor.h @@ -35,14 +35,10 @@ enum class OutputSystem struct Source { - Source(const char* file) - : file(file) {} - Source(const std::string& file) - : file(file) {} - Source(const char* file, Language language) - : file(file), language(language) {} - Source(const std::string& file, Language language) - : file(file), language(language) {} + Source(const char* file) : file(file) {} + Source(const std::string& file) : file(file) {} + Source(const char* file, Language lang) : file(file), language(lang) {} + Source(const std::string& file, Language lang) : file(file), language(lang) {} std::string file; Language language{Language::Auto}; @@ -50,9 +46,10 @@ struct Source struct BuildConfiguration { + std::string name; // Name - used for referring in other configurations. TargetType type{TargetType::Auto}; OutputSystem system{OutputSystem::Host}; - std::string target; + std::string target; // Output target file for this configuration std::vector<Source> sources; // source list std::vector<std::string> depends; // internal dependencies std::vector<std::string> cxxflags; // flags for c++ compiler |