Commented out annoying qtcreator warning.

This commit is contained in:
Alex Zolotarev 2015-11-07 00:46:34 -08:00
parent aecfbcfa3c
commit 93492c8f1a
2 changed files with 7 additions and 5 deletions

View file

@ -1,5 +1,5 @@
CMDRES = $$system(python ../tools/autobuild/shader_preprocessor.py $$SHADER_COMPILE_ARGS)
message($$CMDRES)
!isEmpty($$CMDRES):message($$CMDRES)
INCLUDEPATH *= $$ROOT_DIR/3party/freetype/include
INCLUDEPATH *= $$ROOT_DIR/3party/expat/lib

View file

@ -214,8 +214,9 @@ def validateDocumentation(shaders, shaderDir):
for shader in shaders:
if formatShaderDocName(shader) not in docFiles:
undocumentedShaders.append(shader)
if undocumentedShaders:
print("no documentation for shaders:", undocumentedShaders)
# TODO(AlexZ): Commented out lines below to avoid qtcreator console spamming.
#if undocumentedShaders:
#print("no documentation for shaders:", undocumentedShaders)
#exit(20)
if len(sys.argv) < 4:
@ -238,7 +239,8 @@ if definitionChanged(headerFile, formatOutFilePath(shaderDir, definesFile)):
f = open(formatOutFilePath(shaderDir, definesFile), 'w')
f.write(headerFile)
f.close()
else:
print("No need to update definition file")
# TODO(AlexZ): Commented out lines below to avoid qtcreator console spamming.
#else:
#print("No need to update definition file")
writeImplementationFile(programDefinition, programIndex, shaderIndex, shaderDir, implFile, definesFile, shaders)
validateDocumentation(shaders, shaderDir)