summaryrefslogtreecommitdiff
path: root/src/execute.h
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2022-08-19 18:09:25 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2022-08-19 18:09:25 +0200
commit7436d83ef371d4fee4a66bec235e102ed80275db (patch)
tree243b416b1b6e10a43b9495121af0e57522543de0 /src/execute.h
parente1030dc6e69863438fe35a628bd6af9abc814b4a (diff)
Add support for msvc tool-chain (cl.exe/link.exe and lib.exe) on windows.
Diffstat (limited to 'src/execute.h')
-rw-r--r--src/execute.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/execute.h b/src/execute.h
index c750a83..2ad81d1 100644
--- a/src/execute.h
+++ b/src/execute.h
@@ -5,7 +5,9 @@
#include <string>
#include <vector>
+#include <map>
int execute(const std::string& command,
const std::vector<std::string>& args,
+ const std::map<std::string, std::string>& env,
bool verbose = true);