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": "",
"MarketplaceURL": "",
"SupportURL": "",
"CanContainContent": true,
"CanContainContent": false,
"IsBetaVersion": true,
"Installed": false,
"Installed": true,
"Modules": [
{
"Name": "Carla",

View File

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