diff options
Diffstat (limited to 'src/libctor.h')
-rw-r--r-- | src/libctor.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libctor.h b/src/libctor.h index bcbe3a5..a5fd249 100644 --- a/src/libctor.h +++ b/src/libctor.h @@ -73,6 +73,7 @@ struct ExternalConfiguration std::vector<std::string> cflags; // flags for c compiler std::vector<std::string> ldflags; // flags for linker std::vector<std::string> asmflags; // flags for asm translator + std::vector<std::string> libs; // libraries }; using ExternalConfigurations = std::vector<ExternalConfiguration>; @@ -111,6 +112,7 @@ struct Configuration std::map<std::string, std::string> env; // env used when last calling configure std::map<std::string, std::string> tools; // tools + std::map<std::string, std::vector<std::string>> externals; }; const Configuration& configuration(); |