Build Linux: Enable exceptions in carla plugin (like is done for windows) due boost headers contain exceptions even with the no exceptions macros.
This commit is contained in:
parent
eb9bbf2419
commit
70dc4bda39
|
@ -41,7 +41,7 @@ public class Carla :
|
|||
bool IsWindows = Target.Platform == UnrealTargetPlatform.Win64;
|
||||
|
||||
PrivatePCHHeaderFile = "Carla.h";
|
||||
bEnableExceptions = bEnableExceptions || IsWindows;
|
||||
bEnableExceptions = true;
|
||||
|
||||
var DirectoryInfo = new DirectoryInfo(ModuleDirectory);
|
||||
for (int i = 0; i != 6; ++i)
|
||||
|
|
|
@ -75,7 +75,7 @@ public class CarlaTools :
|
|||
|
||||
bool IsWindows = Target.Platform == UnrealTargetPlatform.Win64;
|
||||
PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs;
|
||||
bEnableExceptions = bEnableExceptions || IsWindows;
|
||||
bEnableExceptions = true;
|
||||
|
||||
PublicDependencyModuleNames.AddRange(new string[]
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue