Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

バージョン番号の末尾をビルド番号にする #324

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions sakura_core/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@
#define VER_A 2 // a of ver a.b.c.d
#define VER_B 3 // b of ver a.b.c.d
#define VER_C 2 // c of ver a.b.c.d
#ifdef APPVEYOR_BUILD_NUMBER_INT
#define VER_D APPVEYOR_BUILD_NUMBER_INT // d of ver a.b.c.d
#else
#define VER_D 0 // d of ver a.b.c.d
#endif

#define TO_STR(arg) #arg
#define MAKE_VERSION_STR(a, b, c, d, sep) TO_STR(a) sep TO_STR(b) sep TO_STR(c) sep TO_STR(d)
Expand Down