15 lines
394 B
C
Executable file
15 lines
394 B
C
Executable file
// Makefile appends preprocessor flags instead now
|
|
#ifndef RADIANT_VERSION
|
|
#error no RADIANT_VERSION defined
|
|
#endif
|
|
#ifndef RADIANT_MAJOR_VERSION
|
|
#error no RADIANT_MAJOR_VERSION defined
|
|
#endif
|
|
#ifndef RADIANT_MINOR_VERSION
|
|
#error no RADIANT_MINOR_VERSION defined
|
|
#endif
|
|
|
|
// MSVC: resolve ASSIMP_INCLUDE macro for q3map2 model loading
|
|
#ifndef ASSIMP_INCLUDE
|
|
#define ASSIMP_INCLUDE(x) <x>
|
|
#endif
|