mirror of
https://github.com/feather-wallet/feather.git
synced 2024-11-17 09:47:36 +00:00
Windows: write to console
This commit is contained in:
parent
0f96dd7fb5
commit
564ec31c2d
1 changed files with 11 additions and 0 deletions
11
src/main.cpp
11
src/main.cpp
|
@ -14,6 +14,10 @@
|
|||
|
||||
#include <QtPlugin>
|
||||
|
||||
#if defined(Q_OS_WIN)
|
||||
#include <windows.h>
|
||||
#endif
|
||||
|
||||
#if defined(Q_OS_LINUX) && defined(STATIC)
|
||||
Q_IMPORT_PLUGIN(QXcbIntegrationPlugin)
|
||||
#endif
|
||||
|
@ -32,6 +36,13 @@ int main(int argc, char *argv[])
|
|||
Q_INIT_RESOURCE(assets_mining);
|
||||
#endif
|
||||
|
||||
#ifdef _WIN32
|
||||
if (AttachConsole(ATTACH_PARENT_PROCESS)) {
|
||||
freopen("CONOUT$", "w", stdout);
|
||||
freopen("CONOUT$", "w", stderr);
|
||||
}
|
||||
#endif
|
||||
|
||||
QStringList argv_;
|
||||
for(int i = 0; i != argc; i++){
|
||||
argv_ << QString::fromStdString(argv[i]);
|
||||
|
|
Loading…
Reference in a new issue