Skip to content

Commit

Permalink
Fixed indentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
gmpreussner committed Jul 22, 2017
1 parent cab82ce commit 3dc3262
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 24 deletions.
12 changes: 5 additions & 7 deletions Source/TextAsset/TextAsset.Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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",
}
);
});
}
}
}
30 changes: 13 additions & 17 deletions Source/TextAssetEditor/TextAssetEditor.Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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",
}
);
});
}
}

0 comments on commit 3dc3262

Please sign in to comment.