Skip to content

Commit

Permalink
this module theoretically works
Browse files Browse the repository at this point in the history
  • Loading branch information
Xavrax committed Sep 21, 2023
1 parent fcd3fcc commit 305bed8
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions unreal/PubNubModule/PubNubModule.Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,15 @@ public PubNubModule(ReadOnlyTargetRules Target) : base(Target)
PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs;

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

PrivateDependencyModuleNames.AddRange(new string[] { });

PublicAdditionalLibraries.Add(Path.Combine(new string[] { ModuleDirectory, "..", "ThirdParty", "c-core", "posix", "pubnub_sync.a" }));
PrivateIncludePaths.Add(Path.Combine(new string[] { ModuleDirectory, "..", "ThirdParty", "c-core" }));
PrivateIncludePaths.Add(Path.Combine(new string[] { ModuleDirectory, "..", "ThirdParty", "c-core", "core" }));
PrivateIncludePaths.Add(Path.Combine(new string[] { ModuleDirectory, "..", "ThirdParty", "c-core", "lib" }));
PrivateIncludePaths.Add(Path.Combine(new string[] { ModuleDirectory, "..", "ThirdParty", "c-core", "posix" }));
PublicAdditionalLibraries.Add(Path.Combine(new string[] { ModuleDirectory, "..", "..", "posix", "pubnub_sync.a" }));
PrivateIncludePaths.Add(Path.Combine(new string[] { ModuleDirectory, "..", ".." }));
PrivateIncludePaths.Add(Path.Combine(new string[] { ModuleDirectory, "..", "..", "core" }));
PrivateIncludePaths.Add(Path.Combine(new string[] { ModuleDirectory, "..", "..", "lib" }));
PrivateIncludePaths.Add(Path.Combine(new string[] { ModuleDirectory, "..", "..", "posix" }));

// Uncomment if you are using Slate UI
// PrivateDependencyModuleNames.AddRange(new string[] { "Slate", "SlateCore" });
Expand Down

0 comments on commit 305bed8

Please sign in to comment.