| Line | |
|---|
| 1 | /////////////////////////////////////////////////////////////////////
|
|---|
| 2 | // コンパイル オプション
|
|---|
| 3 | /////////////////////////////////////////////////////////////////////
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 | /////////////////////////////
|
|---|
| 7 | // ここから
|
|---|
| 8 |
|
|---|
| 9 | // バージョン
|
|---|
| 10 | #define MAJOR_VER 5
|
|---|
| 11 | #define MINOR_VER 00
|
|---|
| 12 | #define REVISION_VER 00
|
|---|
| 13 |
|
|---|
| 14 | // バージョン付加文字列
|
|---|
| 15 | #ifdef _AMD64_
|
|---|
| 16 | #define VER_INFO "(x64) (rev.280)"
|
|---|
| 17 | #else
|
|---|
| 18 | #define VER_INFO "(rev.280)"
|
|---|
| 19 | #endif
|
|---|
| 20 |
|
|---|
| 21 | // ログ生成しない場合はこの下の行をコメントアウトする
|
|---|
| 22 | #define USE_TRACE
|
|---|
| 23 |
|
|---|
| 24 |
|
|---|
| 25 | // ここまで
|
|---|
| 26 | /////////////////////////////
|
|---|
| 27 |
|
|---|
| 28 |
|
|---|
| 29 | #ifdef USE_TRACE
|
|---|
| 30 | #define trace(s) Jenga::Common::logger << s << endl
|
|---|
| 31 | #else
|
|---|
| 32 | #define trace(s)
|
|---|
| 33 | #endif
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.