You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
c22c949712
- Forcing DWARF3 since libdwarf (from MIT-licensed elftoolchain) doesn't support DWARF4 (which clang 3.5+ defaults to). Can cause binary size regression. - Extended TestPAL to test crashes/fatal logs. - Rearranged switches so deoptimizing switches are only applied to debug builds (development still have meaningful info in debugger). #coderview Bob.Tellez, Josh.Markiewicz [CL 2559036 by Dmitry Rekman in Main branch]
19 lines
511 B
C
19 lines
511 B
C
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
// other modules' headers
|
|
#include "Core.h"
|
|
|
|
#define ARG_PROC_TEST "proc"
|
|
#define ARG_PROC_TEST_CHILD "proc-child"
|
|
#define ARG_CASE_SENSITIVITY_TEST "case"
|
|
#define ARG_MESSAGEBOX_TEST "messagebox"
|
|
#define ARG_DIRECTORY_WATCHER_TEST "dirwatcher"
|
|
#define ARG_THREAD_SINGLETON_TEST "threadsingleton"
|
|
#define ARG_SYSINFO_TEST "sysinfo"
|
|
#define ARG_CRASH_TEST "crash"
|
|
|
|
// this module headers
|
|
#include "Parent.h"
|