From ff4a71e4ded652f345b75a74693e24854531a514 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 7 Jan 2011 16:12:24 +0000 Subject: Fancier configure output. git-svn-id: http://svn.drobilla.net/autowaf@16 e2e4594f-ea7b-45dc-bc5a-5f5301e603aa --- autowaf.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'autowaf.py') diff --git a/autowaf.py b/autowaf.py index c88ad02..0b52b6d 100644 --- a/autowaf.py +++ b/autowaf.py @@ -123,6 +123,7 @@ def configure(conf): def append_cxx_flags(vals): conf.env.append_value('CFLAGS', vals.split()) conf.env.append_value('CXXFLAGS', vals.split()) + print display_header('Global Configuration') conf.check_tool('compiler_cc') conf.check_tool('compiler_cxx') @@ -268,7 +269,9 @@ def display_msg(conf, msg, status = None, color = None): color = 'GREEN' elif type(status) == bool and not status or status == "False": color = 'YELLOW' - Logs.pprint('BOLD', "%s :" % msg.ljust(conf.line_just), sep='') + Logs.pprint('BOLD', " *", sep='') + Logs.pprint('NORMAL', "%s" % msg.ljust(conf.line_just - 3), sep='') + Logs.pprint('BOLD', ":", sep='') Logs.pprint(color, status) def link_flags(env, lib): -- cgit v1.2.1