Files
UnrealEngine/Engine/Source/ThirdParty/vcpkg/Vcpkg.Build.cs
2025-05-18 13:04:45 +08: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.
}
}