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

这个提交包含在:
Your Name
2023-03-24 14:56:57 +08:00
父节点 3fb519bf83
当前提交 ea4cd5a75a
共有 25 个文件被更改,包括 6113 次插入5 次删除

查看文件

@@ -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;
}
}