Files
CHOMPStation2/code/__defines/_compile_options.dm
Leshana c17227df9b Speedup Travis and Upgrade Byond used by Travis
The first round of compiling done in travis build is to test the submaps.
It will complete faster if we do not include the main map during this round;
the main map gets compiled and checked in the second round anyway.
2018-01-17 19:23:35 -05:00

15 lines
691 B
Plaintext

#define BACKGROUND_ENABLED 0 // The default value for all uses of set background. Set background can cause gradual lag and is recommended you only turn this on if necessary.
// 1 will enable set background. 0 will disable set background.
#define PRELOAD_RSC 1 /*set to:
0 to allow using external resources or on-demand behaviour;
1 to use the default behaviour (preload compiled in recourses, not player uploaded ones);
2 for preloading absolutely everything;
*/
// If we are doing the map test build, do not include the main maps, only the submaps.
#if MAP_TEST
#define USING_MAP_DATUM /datum/map
#define MAP_OVERRIDE 1
#endif