Files
UnrealEngineUWP/Engine/Source/Programs/PixelStreaming/WebRTCProxy/WebRTCProxy.Target.cs
Josh Adams 1e4b186150 - Big update to platforms: PlatformExtensions
- This allows for Confidential platforms to exist outside of the engine, and insert themselves in as needed
- Directory structure is, where .... mirrors the directory structure for Engine and projects
     - /Platforms/XXX/....
- Moving to more data driven approach for ShaderPlatforms and PlatformInfo, where they can be read from DataDrivenPlatformInfo.ini files that live in the platform config folders
- Removed platform mentions from UBT, by way of changing some enums to partial classes with static members (see UnrealTargetPlatform)
- Various other UBT/UAT modifications to allow for looking in other locations for files
- THIS IS NOT A COMPLETE AND FINAL SOLUTION. WE WILL CONTINUE WORK IN DEV-BUILD BEFORE ITS READY FOR PRIMETIME
#rb ben.marsh

[CL 6271418 by Josh Adams in Dev-Build branch]
2019-05-03 08:03:23 -04:00

31 lines
952 B
C#

// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
[SupportedPlatforms("Win64")]
public class WebRTCProxyTarget : TargetRules
{
public WebRTCProxyTarget(TargetInfo Target) : base(Target)
{
Type = TargetType.Program;
LaunchModuleName = "WebRTCProxy";
GlobalDefinitions.Add("WEBRTC_WIN");
GlobalDefinitions.Add("INCL_EXTRA_HTON_FUNCTIONS");
ExeBinariesSubFolder = "../../Source/Programs/PixelStreaming/WebRTCProxy/bin";
// Lean and mean
bBuildDeveloperTools = false;
// No editor needed
bBuildWithEditorOnlyData = false;
// Currently this app is not linking against the engine, so we'll compile out references from Core to the rest of the engine
bCompileAgainstEngine = false;
bCompileAgainstCoreUObject = false;
// Console application, not a Windows app (sets entry point to main(), instead of WinMain())
bIsBuildingConsoleApplication = true;
}
}