mirror of
https://github.com/glest/glest-source.git
synced 2025-02-24 11:42:31 +01:00
11 lines
465 B
Bash
Executable File
11 lines
465 B
Bash
Executable File
#!/bin/bash
|
|
# Use this script to check MegaGlest Source Code for errors using cppcheck
|
|
# ----------------------------------------------------------------------------
|
|
# Written by Mark Vejvoda <mark_vejvoda@hotmail.com>
|
|
# Copyright (c) 2011 Mark Vejvoda under GNU GPL v3.0+
|
|
|
|
cppcheck ../../source/ -i ../../source/win32_deps -i ../../source/configurator -j 5 --enable=all --force --verbose 2> cppcheck.log
|
|
|
|
echo "Results from cppcheck were written to cppcheck.log"
|
|
|