镜像自地址
https://github.com/binary-husky/gpt_academic.git
已同步 2025-12-06 06:26:47 +00:00
18 行
380 B
C#
18 行
380 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class UElibJPG : ModuleRules
|
|
{
|
|
public UElibJPG(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
Type = ModuleType.External;
|
|
|
|
string libJPGPath = Target.UEThirdPartySourceDirectory + "libJPG";
|
|
PublicIncludePaths.Add(libJPGPath);
|
|
|
|
ShadowVariableWarningLevel = WarningLevel.Off;
|
|
}
|
|
}
|
|
|