#include #include #include #include #include #include #include #include int main(int argc, char* argv[]) { scwx::util::Logger::Initialize(); spdlog::set_level(spdlog::level::debug); QCoreApplication::setApplicationName("Supercell Wx"); Aws::SDKOptions awsSdkOptions; Aws::InitAPI(awsSdkOptions); scwx::qt::config::RadarSite::Initialize(); scwx::qt::manager::SettingsManager::Initialize(); scwx::qt::manager::ResourceManager::PreLoad(); QApplication a(argc, argv); scwx::qt::main::MainWindow w; w.show(); int result = a.exec(); Aws::ShutdownAPI(awsSdkOptions); return result; }