unbuild.h
来自「虚幻的再开发程序包源代码」· C头文件 代码 · 共 57 行
H
57 行
/*=============================================================================
UnBuild.h: Unreal build settings.
Copyright 1997-1999 Epic Games, Inc. All Rights Reserved.
=============================================================================*/
#if defined(_DEBUG) && !defined(_REALLY_WANT_DEBUG)
#error "Your active configuration is set to DEBUG mode -- this may result in an unstable build!"
#endif
/*-----------------------------------------------------------------------------
Major build options.
-----------------------------------------------------------------------------*/
// Whether to turn off all checks.
#ifndef DO_CHECK
#define DO_CHECK 1
#endif
// Whether to track call-stack errors.
#ifndef DO_GUARD
#define DO_GUARD 1
#endif
// Whether to track call-stack errors in performance critical routines.
#ifndef DO_GUARD_SLOW
#define DO_GUARD_SLOW 0
#endif
// Whether to perform CPU-intensive timing of critical loops.
#ifndef DO_CLOCK_SLOW
#define DO_CLOCK_SLOW 0
#endif
// Whether to gather performance statistics.
#ifndef STATS
#define STATS 1
#endif
// Whether to use Intel assembler code.
#ifndef ASM
#define ASM 1
#endif
// Whether to use 3DNow! assembler code.
#ifndef ASM3DNOW
#define ASM3DNOW 1
#endif
// Whether to use Katmai assembler code.
#ifndef ASMKNI
#define ASMKNI 1
#endif
/*-----------------------------------------------------------------------------
The End.
-----------------------------------------------------------------------------*/
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?