Enabling exceptions for chrono package.

This commit is contained in:
Axel 2021-02-17 10:47:13 +01:00 committed by Axel1092
parent c5a1a28fa2
commit a1704cb3c7
1 changed files with 2 additions and 0 deletions

View File

@ -180,6 +180,7 @@ public class Carla : ModuleRules
PublicDelayLoadDLLs.Add(Path.Combine(LibCarlaInstallPath, "dll", "ChronoEngine_vehicle.dll"));
PublicDelayLoadDLLs.Add(Path.Combine(LibCarlaInstallPath, "dll", "ChronoModels_vehicle.dll"));
PublicDelayLoadDLLs.Add(Path.Combine(LibCarlaInstallPath, "dll", "ChronoModels_robot.dll"));
bUseRTTI = true;
}
}
else
@ -204,6 +205,7 @@ public class Carla : ModuleRules
RuntimeDependencies.Add(Path.Combine(LibCarlaInstallPath, "lib/libChronoModels_vehicle.so"));
RuntimeDependencies.Add(Path.Combine(LibCarlaInstallPath, "lib/libChronoModels_robot.so"));
bUseRTTI = true;
bEnableExceptions = true;
}
}