]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/lib/compiler.qh
d1bdc4fe5b55e609bc4d02b32dc0f55b0761f21a
[xonotic/xonotic-data.pk3dir.git] / qcsrc / lib / compiler.qh
1 #pragma once
2
3 #ifndef QCC_SUPPORT_ACCUMULATE
4         #ifdef GMQCC
5                 #define QCC_SUPPORT_ACCUMULATE
6         #endif
7 #endif
8
9 #ifndef QCC_SUPPORT_NIL
10         #ifdef GMQCC
11                 #define QCC_SUPPORT_NIL
12         #endif
13 #endif
14
15 #ifndef QCC_SUPPORT_ERASEABLE
16         #ifdef GMQCC
17                 #define QCC_SUPPORT_ERASEABLE
18         #endif
19 #endif
20
21 #ifdef GMQCC
22     #define LABEL(id) :id
23 #else
24     #define LABEL(id) id:
25 #endif