mirror of
https://github.com/kevinporetti/UnrealImGui.git
synced 2025-01-18 16:30:32 +00:00
e74e3475d9
- Added ImGui framework source directory. - Added to ImGui module include paths pointing to ImGui source directory. - Added to ImGui module implementation file that includes ImGui source code to be built as part of the module.
10 lines
144 B
C#
10 lines
144 B
C#
using UnrealBuildTool;
|
|
|
|
public class ImGuiLibrary : ModuleRules
|
|
{
|
|
public ImGuiLibrary(TargetInfo Target)
|
|
{
|
|
Type = ModuleType.External;
|
|
}
|
|
}
|