Add a couple symbols to qfcc's preprocessor lines

This commit is contained in:
Jeff Teunissen 2002-01-05 19:18:27 +00:00
parent 9f6dcec9dd
commit 8c2d3f65c3

View file

@ -716,8 +716,10 @@ DecodeArgs (int argc, char **argv)
#ifdef USE_CPP
for (c = 0; c < CPP_MAX_ARGS; cpp_argv[c++] = NULL); // clear the args
cpp_argv[cpp_argc++] = "cpp";
cpp_argv[cpp_argc++] = "-D__QUAKEC__=1";
cpp_argv[cpp_argc++] = "-D__QFCC__=1";
cpp_argv[cpp_argc++] = "-D__QUAKEC__=1";
cpp_argv[cpp_argc++] = "-D__RUAMOKO__=1";
cpp_argv[cpp_argc++] = "-D__RAUMOKO__=1";
#endif
options.code.cpp = true;