-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #42 from pakerwreah/develop
v1.5.2
- Loading branch information
Showing
84 changed files
with
14,241 additions
and
311 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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#Fri Oct 16 20:47:40 BRT 2020 | ||
#Mon May 17 20:09:34 BRT 2021 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-bin.zip | ||
distributionPath=wrapper/dists | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-all.zip | ||
zipStoreBase=GRADLE_USER_HOME |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
## | ||
# `filematch` is a custom directive added to cpplint.py | ||
# so we can have rules for files that match a specific pattern | ||
## | ||
set noparent | ||
|
||
linelength=130 | ||
filter=-legal/copyright | ||
|
||
# `build` rules | ||
filter=-build/c++11 | ||
filter=-build/include_what_you_use | ||
filter=-build/header_guard | ||
filter=-build/include_subdir | ||
|
||
# `whitespace` rules | ||
filter=-whitespace/indent | ||
filter=-whitespace/comments | ||
filter=-whitespace/blank_line | ||
|
||
# `readability` rules | ||
filter=-readability/namespace | ||
filter=-readability/todo | ||
filter=-readability/check | ||
|
||
# `runtime` rules | ||
filter=-runtime/references | ||
filter=-runtime/indentation_namespace | ||
filter=-runtime/int | ||
|
||
# `cpp` rules | ||
filematch=*.cpp | ||
filter=-build/namespaces | ||
|
||
# these files tend to have a lot of C-style code | ||
filematch=Socket.cpp | ||
filter=-readability/casting | ||
|
||
filematch=UDPSocket.cpp | ||
filter=-readability/casting |
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,2 +1,14 @@ | ||
#!/bin/sh | ||
cmake -Bcmake-build-debug && make -C cmake-build-debug | ||
|
||
GREEN='\033[0;32m' | ||
CYAN='\033[0;36m' | ||
NC='\033[0m' | ||
|
||
if [ -f /.dockerenv ]; then | ||
printf "\n💡 ${GREEN}Building outside volume for better performance: ${CYAN}../cmake-build-debug${NC}\n\n" | ||
cmake -B../cmake-build-debug && make -C ../cmake-build-debug -j | ||
cp clear-gcda.sh ../cmake-build-debug | ||
else | ||
cmake -Bcmake-build-debug && make -C cmake-build-debug -j | ||
cp clear-gcda.sh cmake-build-debug | ||
fi |
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.