Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Source/StreamChatSample/StreamChatSample.Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ public StreamChatSample(ReadOnlyTargetRules Target) : base(Target)

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

// The module is flat, so a quoted include normally resolves against the including file's own
// directory. IOS/ breaks that, and it has to live in a folder named for the platform: UBT
// excludes source by directory name, and a .mm left in the module root is handed to whatever
// compiler the host uses, MSVC included.
PrivateIncludePaths.Add(ModuleDirectory);

// StreamChatUi is here only for FAttachmentPicker, which the sample fills in with the photo
// picker below. The plugin itself never touches a platform framework.
PrivateDependencyModuleNames.AddRange(new[] { "StreamChat", "StreamChatUi" });
Expand Down
Loading