Sha256: 936eb0976b1bc1f1027cf0f39a55f1afff70b0712eb97fca408b5b48acd859ea
Contents?: true
Size: 1.33 KB
Versions: 4
Compression:
Stored size: 1.33 KB
Contents
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved. using System.IO; using UnrealBuildTool; public class inkcpp : ModuleRules { public inkcpp(ReadOnlyTargetRules Target) : base(Target) { // Enable C++20 support PCHUsage = ModuleRules.PCHUsageMode.NoSharedPCHs; PrivatePCHHeaderFile = "Public/inkcpp.h"; CppStandard = CppStandardVersion.Cpp20; PublicIncludePaths.AddRange( new string[] { Path.Combine(ModuleDirectory, "../shared/Public") } ); PrivateIncludePaths.AddRange( new string[] { Path.Combine(ModuleDirectory, "../shared/Private"), Path.Combine(ModuleDirectory, "Private/ink"), Path.Combine(ModuleDirectory, "Public/ink"), Path.Combine(ModuleDirectory, "../ThirdParty/Private"), } ); PublicDependencyModuleNames.AddRange( new string[] { "Core", // ... add other public dependencies that you statically link with here ... } ); PrivateDependencyModuleNames.AddRange( new string[] { "CoreUObject", "Engine", "Slate", "SlateCore", // ... add private dependencies that you statically link with here ... } ); DynamicallyLoadedModuleNames.AddRange( new string[] { // ... add any modules that your module loads dynamically here ... } ); } }
Version data entries
4 entries across 4 versions & 1 rubygems