mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-16 05:13:58 -07:00
Passed --have-std to CxxTest so it always adds the same code before including precompiled.h, so that the PCH is usable. This was SVN commit r4736.
8 lines
240 B
C++
8 lines
240 B
C++
// Got to be consistent with what the rest of the source files do before
|
|
// including precompiled.h, so that the PCH works correctly
|
|
#ifndef CXXTEST_RUNNING
|
|
#define CXXTEST_RUNNING
|
|
#endif
|
|
#define _CXXTEST_HAVE_STD
|
|
|
|
#include "precompiled.h"
|