diff --git a/Source/TextAsset/TextAsset.Build.cs b/Source/TextAsset/TextAsset.Build.cs index bf5c9fb..b88c8c9 100644 --- a/Source/TextAsset/TextAsset.Build.cs +++ b/Source/TextAsset/TextAsset.Build.cs @@ -6,20 +6,18 @@ public class TextAsset : ModuleRules { public TextAsset(ReadOnlyTargetRules Target) : base(Target) { - PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs; + PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs; - PublicDependencyModuleNames.AddRange( - new string[] { + PublicDependencyModuleNames.AddRange( + new string[] { "Core", "CoreUObject", - } - ); + }); PrivateIncludePaths.AddRange( new string[] { "Runtime/TextAsset/Private", - } - ); + }); } } } diff --git a/Source/TextAssetEditor/TextAssetEditor.Build.cs b/Source/TextAssetEditor/TextAssetEditor.Build.cs index d2b63f7..8b38204 100644 --- a/Source/TextAssetEditor/TextAssetEditor.Build.cs +++ b/Source/TextAssetEditor/TextAssetEditor.Build.cs @@ -6,51 +6,47 @@ public class TextAssetEditor : ModuleRules { public TextAssetEditor(ReadOnlyTargetRules Target) : base(Target) { - PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs; + PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs; - DynamicallyLoadedModuleNames.AddRange( + DynamicallyLoadedModuleNames.AddRange( new string[] { "AssetTools", "MainFrame", // "WorkspaceMenuStructure", - } - ); + }); PrivateIncludePaths.AddRange( new string[] { "TextAssetEditor/Private", "TextAssetEditor/Private/AssetTools", "TextAssetEditor/Private/Factories", - "TextAssetEditor/Private/Shared", - "TextAssetEditor/Private/Styles", - "TextAssetEditor/Private/Toolkits", - "TextAssetEditor/Private/Widgets", - } - ); + "TextAssetEditor/Private/Shared", + "TextAssetEditor/Private/Styles", + "TextAssetEditor/Private/Toolkits", + "TextAssetEditor/Private/Widgets", + }); PrivateDependencyModuleNames.AddRange( new string[] { "ContentBrowser", "Core", "CoreUObject", - "DesktopWidgets", + "DesktopWidgets", "EditorStyle", "Engine", "InputCore", - "Projects", + "Projects", "Slate", "SlateCore", - "TextAsset", + "TextAsset", "UnrealEd", - } - ); + }); PrivateIncludePathModuleNames.AddRange( new string[] { "AssetTools", "UnrealEd", // "WorkspaceMenuStructure", - } - ); + }); } }