waf: display warning if GUI frontend will not be built

This commit is contained in:
Nedko Arnaudov 2010-09-09 01:42:27 +03:00
parent 46ef7c32e3
commit a94e623068
1 changed files with 4 additions and 0 deletions

View File

@ -226,6 +226,10 @@ def configure(conf):
display_msg(conf, 'C compiler flags', conf.env['CCFLAGS'])
display_msg(conf, 'C++ compiler flags', conf.env['CXXFLAGS'])
if not conf.env['BUILD_GLADISH']:
display_msg(conf)
display_line(conf, "WARNING: The GUI frontend will not built", 'RED')
display_msg(conf)
def build(bld):