]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/lib/Progname.qh
Move test to /lib
[xonotic/xonotic-data.pk3dir.git] / qcsrc / lib / Progname.qh
1 #ifndef PROGNAME_H
2 #define PROGNAME_H
3
4 #if defined(MENUQC)
5     #define PROGNAME "MENUQC"
6 #elif defined(SVQC)
7     #define PROGNAME "SVQC"
8 #elif defined(CSQC)
9     #define PROGNAME "CSQC"
10 #else
11     #error "Unable to detect PROGNAME"
12 #endif
13
14 #endif