summaryrefslogtreecommitdiffstats
path: root/src/build.h
diff options
context:
space:
mode:
authorEvan Martin <martine@danga.com>2010-12-26 20:46:59 (GMT)
committerEvan Martin <martine@danga.com>2010-12-26 20:46:59 (GMT)
commita1b5f6bfffa78b4689f172cf3d50416799798153 (patch)
tree71aa225a2d43b49d4e41bed924ed6e96a2a9b300 /src/build.h
parent53fc63501dab3c40355f6a66cc712dd50081abfd (diff)
downloadNinja-a1b5f6bfffa78b4689f172cf3d50416799798153.zip
Ninja-a1b5f6bfffa78b4689f172cf3d50416799798153.tar.gz
Ninja-a1b5f6bfffa78b4689f172cf3d50416799798153.tar.bz2
move buildlog to main driver
Diffstat (limited to 'src/build.h')
-rw-r--r--src/build.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/build.h b/src/build.h
index f4b8d0c..4d08f70 100644
--- a/src/build.h
+++ b/src/build.h
@@ -58,7 +58,7 @@ struct CommandRunner {
};
struct BuildConfig {
- BuildConfig() : verbosity(NORMAL), dry_run(false) {}
+ BuildConfig() : verbosity(NORMAL), dry_run(false), build_log(NULL) {}
enum Verbosity {
NORMAL,
@@ -67,6 +67,7 @@ struct BuildConfig {
};
Verbosity verbosity;
bool dry_run;
+ struct BuildLog* build_log;
};
struct Builder {