-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* updated CodeBlocksLinux project * updated changelog, version numbers, and READMEs * added Builds/Scripts/cppcheck-filtered.sh * addresssed some lint issues * added AvCaster::SetWindowTitle() * removed MainContent::instantiate(), MainContent::setTitle() * removed AvCasterApplication param from MainWindow constructor * removed MainWindow param from MainContent constructor
- Loading branch information
1 parent
e8cb92d
commit 48355fc
Showing
20 changed files
with
212 additions
and
177 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
# links | ||
mk* | ||
mk | ||
mk-clean | ||
mk-reset | ||
dbg | ||
cppcheck-filtered | ||
|
||
# builds | ||
Builds/* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
the build helper scripts contained in this directory should be run from the project root directory | ||
|
||
run setup-build-helpers.sh from this directory to link these scripts in the project root | ||
run setup-build-helpers from this directory to link these scripts in the project root |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#!/bin/bash | ||
|
||
|
||
echo "running cppcheck --enable=all on ./Source/ with filters" | ||
|
||
# supress warnings for 'unused' event handlers | ||
# so that we can exclude the JUCE library from cppcheck | ||
cppcheck --enable=all --template=gcc --quiet Source/ 2> >( | ||
grep -v "Cppcheck cannot find all the include files" | | ||
grep -v "The function 'initialise' is never used." | | ||
grep -v "The function 'anotherInstanceStarted' is never used." | | ||
grep -v "The function 'moreThanOneInstanceAllowed' is never used." | | ||
grep -v "The function 'closeButtonPressed' is never used." | | ||
grep -v "The function 'timerCallback' is never used." | | ||
grep -v "The function 'getApplicationName' is never used." | | ||
grep -v "The function 'getApplicationVersion' is never used." | | ||
grep -v "The function 'resized' is never used." | | ||
grep -v "The function 'paint' is never used." | | ||
grep -v "The function 'broughtToFront' is never used." | | ||
grep -v "The function 'buttonClicked' is never used." | | ||
grep -v "The function 'comboBoxChanged' is never used." | | ||
grep -v "The function 'sliderValueChanged' is never used." | | ||
grep -v "The function 'textEditorFocusLost' is never used." | | ||
grep -v "The function 'valueTreePropertyChanged' is never used." ) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/bin/bash | ||
|
||
SCRIPTS_DIR=`pwd` | ||
|
||
|
||
cd ../../ | ||
ln -s $SCRIPTS_DIR/dbg . | ||
ln -s $SCRIPTS_DIR/mk . | ||
ln -s $SCRIPTS_DIR/mk-clean . | ||
ln -s $SCRIPTS_DIR/mk-reset . | ||
ln -s $SCRIPTS_DIR/cppcheck-filtered . |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.