| 1448 | #if BX_PLATFORM_OSX || BX_PLATFORM_ANDROID || BX_PLATFORM_IOS || BX_PLATFORM_LINUX |
| 1449 | #ifndef DORA_AS_LIB |
| 1450 | int main(int argc, char* argv[]) { |
| 1451 | if (Dora::isCliRequested(argc, argv)) { |
| 1452 | int exitCode = Dora::runCliApplication(argc, argv); |
| 1453 | Dora::Life::destroy(Slice::Empty); |
| 1454 | return exitCode; |
| 1455 | } |
| 1456 | int exitCode = SharedApplication.run(); |
| 1457 | Dora::Life::destroy(Slice::Empty); |
| 1458 | return exitCode; |
| 1459 | } |
| 1460 | #endif // !DORA_AS_LIB |
| 1461 | #endif // BX_PLATFORM_OSX || BX_PLATFORM_ANDROID || BX_PLATFORM_IOS || BX_PLATFORM_LINUX |
| 1462 |
nothing calls this directly
no test coverage detected