You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb jonathan.adamczewski #jira none #preflight 625811d4d3793ebff60dd484 [CL 19754066 by Martin Sevigny in ue5-main branch]
35 lines
666 B
C#
35 lines
666 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
using Microsoft.Win32;
|
|
using System.IO;
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
public class VisualStudioSourceCodeAccess : ModuleRules
|
|
{
|
|
public VisualStudioSourceCodeAccess(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"SourceCodeAccess",
|
|
"DesktopPlatform",
|
|
"Projects",
|
|
"Json",
|
|
"VisualStudioSetup",
|
|
"VisualStudioDTE"
|
|
}
|
|
);
|
|
|
|
if (Target.bBuildEditor)
|
|
{
|
|
PrivateDependencyModuleNames.Add("HotReload");
|
|
}
|
|
|
|
bBuildLocallyWithSNDBS = true;
|
|
|
|
ShortName = "VSSCA";
|
|
}
|
|
}
|
|
}
|