diff options
author | Thiago Farina <tfarina@chromium.org> | 2011-03-07 22:34:25 (GMT) |
---|---|---|
committer | Evan Martin <martine@danga.com> | 2011-03-07 22:34:48 (GMT) |
commit | 835983365c3730dbd93baa1b17f42f3cd6579999 (patch) | |
tree | fdab1fd6349251ef4b2418dc2124374acf534935 /src/ninja.cc | |
parent | 58a2b6d560f1749f3c275c7a289ddb2168a045f7 (diff) | |
download | Ninja-835983365c3730dbd93baa1b17f42f3cd6579999.zip Ninja-835983365c3730dbd93baa1b17f42f3cd6579999.tar.gz Ninja-835983365c3730dbd93baa1b17f42f3cd6579999.tar.bz2 |
move the implementation of GraphViz to source file
Diffstat (limited to 'src/ninja.cc')
-rw-r--r-- | src/ninja.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ninja.cc b/src/ninja.cc index 8c46833..c113bfb 100644 --- a/src/ninja.cc +++ b/src/ninja.cc @@ -31,9 +31,9 @@ #include "browse.h" #include "build.h" #include "build_log.h" -#include "parsers.h" - +#include "graph.h" #include "graphviz.h" +#include "parsers.h" option options[] = { { "help", no_argument, NULL, 'h' }, |