Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2012-12-11 03:34:41 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2012-12-11 03:34:41 +0400
commitc9dc80111b63fc1b28cae27d6f7ed02ee3bd53db (patch)
tree4e5a52579c7e0451f04b8f18bb25ef989a798939 /build_files
parent5083e0737f6413c63ab49b82735333534181d9b4 (diff)
parent245345fba5f44b5c8562c826ca0053fa5bbd2ff3 (diff)
Merged changes in the trunk up to revision 52858.
Congratulations to all trunk devs on the Blender 2.65 release!
Diffstat (limited to 'build_files')
-rw-r--r--build_files/cmake/cmake_static_check_cppcheck.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/build_files/cmake/cmake_static_check_cppcheck.py b/build_files/cmake/cmake_static_check_cppcheck.py
index 12369a5e8cd..d79145f8586 100644
--- a/build_files/cmake/cmake_static_check_cppcheck.py
+++ b/build_files/cmake/cmake_static_check_cppcheck.py
@@ -46,6 +46,9 @@ CHECKER_ARGS = [
# "--enable=all", # if you want sixty hundred pedantic suggestions
]
+if USE_QUIET:
+ CHECKER_ARGS.append("--quiet")
+
def main():
source_info = project_source_info.build_info(ignore_prefix_list=CHECKER_IGNORE_PREFIX)
@@ -78,6 +81,8 @@ def main():
project_source_info.queue_processes(process_functions)
+ print("Finished!")
+
if __name__ == "__main__":
main()