Files
UnrealEngine/Engine/Source/ThirdParty/vcpkg/Vcpkg.Build.cs
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

19 lines
490 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.IO;
using System.Collections.Generic;
public class Vcpkg : ModuleRules
{
public Vcpkg(ReadOnlyTargetRules Target) : base(Target)
{
Type = ModuleType.External;
// This is an empty External module that contains helper scripts for building third party libraries
// using vcpkg and should not be reference directly.
// TODO: Support building vcpkg libraries automatically during a build.
}
}