Fix packaging issues

This commit is contained in:
nsubiron 2017-03-21 14:10:49 +01:00
parent 894eee3074
commit fbad763c6c
2 changed files with 8 additions and 2 deletions

View File

@ -10,9 +10,9 @@
"DocsURL": "", "DocsURL": "",
"MarketplaceURL": "", "MarketplaceURL": "",
"SupportURL": "", "SupportURL": "",
"CanContainContent": true, "CanContainContent": false,
"IsBetaVersion": true, "IsBetaVersion": true,
"Installed": false, "Installed": true,
"Modules": [ "Modules": [
{ {
"Name": "Carla", "Name": "Carla",

View File

@ -49,6 +49,12 @@ public class Carla : ModuleRules
AddBoostDependency(Target); AddBoostDependency(Target);
AddProtobufDependency(Target); AddProtobufDependency(Target);
AddCarlaServerDependency(Target); AddCarlaServerDependency(Target);
if (Target.Platform == UnrealTargetPlatform.Linux)
{
// Fails to link the std libraries.
PublicAdditionalLibraries.Add("stdc++");
}
} }
private bool IsWindows(TargetInfo Target) private bool IsWindows(TargetInfo Target)