comparison main/main.cpp @ 2448:119588c42772

Generate the WXS files from templated inputs, substituting in the version and redistributable paths; also include OpenSSL libraries in the package, fixing #1895 Windows build fails to open https locations
author Chris Cannam
date Tue, 14 Jan 2020 13:23:04 +0000
parents 59b7fa58c0af
children 74d73990ac1d
comparison
equal deleted inserted replaced
2447:d7b724db4bd0 2448:119588c42772
41 #include <QDir> 41 #include <QDir>
42 #include <QTimer> 42 #include <QTimer>
43 #include <QPainter> 43 #include <QPainter>
44 #include <QFileOpenEvent> 44 #include <QFileOpenEvent>
45 #include <QCommandLineParser> 45 #include <QCommandLineParser>
46 #include <QSslSocket>
46 47
47 #include <iostream> 48 #include <iostream>
48 #include <signal.h> 49 #include <signal.h>
49 50
50 #include "../version.h" 51 #include "../version.h"
387 SVDEBUG << "Done" << endl; 388 SVDEBUG << "Done" << endl;
388 application.installTranslator(&svTranslator); 389 application.installTranslator(&svTranslator);
389 390
390 StoreStartupLocale(); 391 StoreStartupLocale();
391 392
393 SVDEBUG << "Note: SSL library build version is: "
394 << QSslSocket::sslLibraryBuildVersionString()
395 << endl;
396
392 // Make known-plugins query as early as possible after showing 397 // Make known-plugins query as early as possible after showing
393 // splash screen. 398 // splash screen.
394 PluginScan::getInstance()->scan(); 399 PluginScan::getInstance()->scan();
395 400
396 // Permit these types to be used as args in queued signal calls 401 // Permit these types to be used as args in queued signal calls