Skip to content

Commit

Permalink
fixed compile warning
Browse files Browse the repository at this point in the history
  • Loading branch information
zjhongxian committed Jun 28, 2023
1 parent f54cc0d commit 1812c25
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/democpp/democpp.Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ public democpp(ReadOnlyTargetRules Target) : base(Target)
{
PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs;

PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "InputCore", "Http" });
PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "InputCore", "HTTP" });

PrivateDependencyModuleNames.AddRange(new string[] { "slua_unreal", "slua_profile", "Slate", "SlateCore", "UMG", "Http" });
PrivateDependencyModuleNames.AddRange(new string[] { "slua_unreal", "slua_profile", "Slate", "SlateCore", "UMG", "HTTP" });

PrivateIncludePathModuleNames.AddRange(new string[] { "slua_unreal" });
PublicIncludePathModuleNames.AddRange(new string[] { "slua_unreal","slua_profile" });
Expand Down

0 comments on commit 1812c25

Please sign in to comment.