Lesson 55 - Dedicated Servers Game Mode

This commit is contained in:
Norman Lansing
2026-03-15 08:53:18 -04:00
parent 3e61d4cec0
commit 2ec989d34a
14 changed files with 93 additions and 114 deletions

View File

@@ -20,7 +20,20 @@ public class DedicatedServers : ModuleRules
PrivateDependencyModuleNames.AddRange(new string[]
{
"Slate",
"SlateCore"
"SlateCore",
"OpenSSL"
});
// Adds in the plugin for GameLiftServerSDK if it is the server build.
if (Target.Type == TargetType.Server)
{
PublicDependencyModuleNames.Add("GameLiftServerSDK");
}
else
{
PublicDefinitions.Add("WITH_GAMELIFT=0");
}
bEnableExceptions = true;
}
}