From b60c7c757d52b1cd1a269ee2f2b20843f02a41e1 Mon Sep 17 00:00:00 2001 From: Thomas Applencourt Date: Fri, 5 Jun 2015 09:56:05 +0200 Subject: [PATCH] Add generator for the png tree --- scripts/compilation/qp_create_ninja.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/compilation/qp_create_ninja.py b/scripts/compilation/qp_create_ninja.py index 450193b4..343ccd89 100755 --- a/scripts/compilation/qp_create_ninja.py +++ b/scripts/compilation/qp_create_ninja.py @@ -371,7 +371,7 @@ def ninja_irpf90_make_rule(): l_string = ["pool irp_pool", " depth = 1", "", "rule build_irpf90.ninja", " command = {0}".format(" ; ".join(l_cmd)), - " pool = irp_pool", " generator = 1", + " pool = irp_pool", " description = Create the IRP_Tree for $module", ""] return l_string @@ -574,7 +574,8 @@ def ninja_dot_tree_rule(): l_string = ["rule build_dot_tree", " command = {0}".format(" ; ".join(l_cmd)), - " description = Generate Dot Dependancies Tree of $module", + " generator = 1", + " description = Generate Png representtion of the Tree Dependancies of $module", ""] return l_string