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:
xavisolesoft 2024-01-29 17:08:40 +01:00
parent eb9bbf2419
commit 70dc4bda39
2 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ public class Carla :
bool IsWindows = Target.Platform == UnrealTargetPlatform.Win64; bool IsWindows = Target.Platform == UnrealTargetPlatform.Win64;
PrivatePCHHeaderFile = "Carla.h"; PrivatePCHHeaderFile = "Carla.h";
bEnableExceptions = bEnableExceptions || IsWindows; bEnableExceptions = true;
var DirectoryInfo = new DirectoryInfo(ModuleDirectory); var DirectoryInfo = new DirectoryInfo(ModuleDirectory);
for (int i = 0; i != 6; ++i) for (int i = 0; i != 6; ++i)

View File

@ -75,7 +75,7 @@ public class CarlaTools :
bool IsWindows = Target.Platform == UnrealTargetPlatform.Win64; bool IsWindows = Target.Platform == UnrealTargetPlatform.Win64;
PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs; PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs;
bEnableExceptions = bEnableExceptions || IsWindows; bEnableExceptions = true;
PublicDependencyModuleNames.AddRange(new string[] PublicDependencyModuleNames.AddRange(new string[]
{ {