?? unbuild.h
字號:
/*=============================================================================
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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -