Created
February 1, 2024 11:44
-
-
Save CoffeeVampir3/6f522e82a38b2c8a35595a6c2a15395f to your computer and use it in GitHub Desktop.
unreal
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnrealBuildTool; | |
public class Necromonicon : ModuleRules | |
{ | |
public Necromonicon(ReadOnlyTargetRules Target) : base(Target) | |
{ | |
PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs; | |
CppStandard = CppStandardVersion.Latest; | |
CStandard = CStandardVersion.Latest; | |
PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "InputCore", | |
"EnhancedInput", "GameplayAbilities", "CommonUI", "MotionWarping", "UMG" | |
}); | |
PrivateDependencyModuleNames.AddRange(new string[] | |
{ | |
"GameplayTags", "GameplayTasks", "NavigationSystem", "Niagara", "Slate", "SlateCore" | |
}); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class NecromoniconEditorTarget : TargetRules | |
{ | |
public NecromoniconEditorTarget(TargetInfo Target) : base(Target) | |
{ | |
Type = TargetType.Editor; | |
DefaultBuildSettings = BuildSettingsVersion.Latest; | |
IncludeOrderVersion = EngineIncludeOrderVersion.Latest; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class NecromoniconTarget : TargetRules | |
{ | |
public NecromoniconTarget(TargetInfo Target) : base(Target) | |
{ | |
Type = TargetType.Game; | |
DefaultBuildSettings = BuildSettingsVersion.Latest; | |
CppStandardEngine = CppStandardVersion.Latest; | |
IncludeOrderVersion = EngineIncludeOrderVersion.Latest; | |
GeneratedCodeVersion = EGeneratedCodeVersion.VLatest; | |
ExtraModuleNames.Add("Necromonicon"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment