forked from edbee/edbee-lib
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'edbee:master' into master
- Loading branch information
Showing
295 changed files
with
111,680 additions
and
132,028 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 |
---|---|---|
|
@@ -48,3 +48,4 @@ edbee-test/edbee-lib/qslog/ | |
build/ | ||
|
||
.idea/ | ||
*.old/ |
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 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,8 @@ | ||
#pragma once | ||
|
||
#define EDBEE_VERSION "0.9.0" | ||
|
||
#define EDBEE_VERSION_MAJOR 0 | ||
#define EDBEE_VERSION_MINOR 9 | ||
#define EDBEE_VERSION_PATCH 0 | ||
#define EDBEE_VERSION_POSTFIX "" |
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,3 @@ | ||
#!/bin/sh | ||
|
||
cp -Rp ../vendor/oniguruma/patch/* ../vendor/oniguruma/oniguruma/ |
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,30 @@ | ||
#!/bin/sh | ||
|
||
if [ "$#" -lt 3 ]; then | ||
echo "Generates the edbee version header" | ||
echo "" | ||
echo "Usage: $0 <major> <minor> <patch> [<postfix>]" | ||
exit; | ||
fi | ||
|
||
major="$1" | ||
minor="$2" | ||
patch="$3" | ||
postfix="$4" | ||
if [ -n "$4" ]; then | ||
postfix_dash="-$4" | ||
fi | ||
target="../edbee-lib/edbee/edbeeversion.h" | ||
|
||
cat <<C > $target | ||
#pragma once | ||
#define EDBEE_VERSION "$major.$minor.$patch$postfix_dash" | ||
#define EDBEE_VERSION_MAJOR $major | ||
#define EDBEE_VERSION_MINOR $minor | ||
#define EDBEE_VERSION_PATCH $patch | ||
#define EDBEE_VERSION_POSTFIX "$postfix" | ||
C | ||
|
||
cat $target |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.