Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
nutti committed Dec 9, 2023
1 parent 665b82f commit 8658ae7
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,8 @@ public BlueprintToRSTDoc(ReadOnlyTargetRules Target) : base(Target)
PublicIncludePaths.AddRange(new string[]{});
PrivateIncludePaths.AddRange(new string[]{"BlueprintToRSTDoc/Public"});
PublicDependencyModuleNames.AddRange(new string[]{"Core"});
PrivateDependencyModuleNames.AddRange(new string[]{
"Projects",
"CoreUObject",
"Engine",
"Slate",
"SlateCore",
"BlueprintGraph"
});
PrivateDependencyModuleNames.AddRange(
new string[]{"Projects", "CoreUObject", "Engine", "Slate", "SlateCore", "BlueprintGraph"});
DynamicallyLoadedModuleNames.AddRange(new string[]{});
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

#include "AssetRegistry/AssetRegistryModule.h"
#include "DesktopPlatformModule.h"
#include "IDesktopPlatform.h"
#include "EdGraphSchema_K2.h"
#include "Engine/UserDefinedEnum.h"
#include "Engine/UserDefinedStruct.h"
#include "GenericPlatform/GenericPlatformFile.h"
#include "HAL/FileManagerGeneric.h"
#include "IDesktopPlatform.h"
#include "Settings.h"

#define ERROR_MESSAGE_BOX(Message) \
Expand Down Expand Up @@ -135,7 +135,7 @@ FString GetPropertyType(FProperty* Property)
else
{
PropertyType = ObjectProperty->PropertyClass->GetName();
}
}
}
else
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,17 @@ public SampleProject(ReadOnlyTargetRules Target) : base(Target)
{
PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs;

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

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

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

// Uncomment if you are using online features
// PrivateDependencyModuleNames.Add("OnlineSubsystem");

// To include OnlineSubsystemSteam, add it to the plugins section in your uproject file with the Enabled attribute set to true
// To include OnlineSubsystemSteam, add it to the plugins section in your uproject file with the Enabled attribute set to
// true
}
}
3 changes: 2 additions & 1 deletion samples/SampleProject/Source/SampleProject/SampleProject.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// Copyright Epic Games, Inc. All Rights Reserved.

#include "SampleProject.h"

#include "Modules/ModuleManager.h"

IMPLEMENT_PRIMARY_GAME_MODULE( FDefaultGameModuleImpl, SampleProject, "SampleProject" );
IMPLEMENT_PRIMARY_GAME_MODULE(FDefaultGameModuleImpl, SampleProject, "SampleProject");
1 change: 0 additions & 1 deletion samples/SampleProject/Source/SampleProject/SampleProject.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,3 @@
#pragma once

#include "CoreMinimal.h"

2 changes: 1 addition & 1 deletion samples/SampleProject/Source/SampleProjectEditor.Target.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

public class SampleProjectEditorTarget : TargetRules
{
public SampleProjectEditorTarget( TargetInfo Target) : base(Target)
public SampleProjectEditorTarget(TargetInfo Target) : base(Target)
{
Type = TargetType.Editor;
DefaultBuildSettings = BuildSettingsVersion.V4;
Expand Down

0 comments on commit 8658ae7

Please sign in to comment.