增加读latex文章的功能,添加测试样例

This commit is contained in:
Your Name
2023-03-24 14:56:57 +08:00
parent 3fb519bf83
commit ea4cd5a75a
25 changed files with 6113 additions and 5 deletions

View File

@@ -0,0 +1,17 @@
// 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;
}
}