From 06567892346462092ea2c425ae1a53b249d57f30 Mon Sep 17 00:00:00 2001 From: scatterflower Date: Thu, 27 Aug 2020 15:11:50 -0500 Subject: [PATCH] keep build stuff in its own dirs, and make console behavior work on windows --- .gitignore | 3 +++ akashi.pro | 4 ++++ src/main.cpp | 10 ++++++++++ 3 files changed, 17 insertions(+) diff --git a/.gitignore b/.gitignore index 6e844ee..4b0c703 100644 --- a/.gitignore +++ b/.gitignore @@ -70,3 +70,6 @@ Thumbs.db *.dll *.exe +bin/ +build/ + diff --git a/akashi.pro b/akashi.pro index 3deb207..22e0434 100644 --- a/akashi.pro +++ b/akashi.pro @@ -15,6 +15,10 @@ DEFINES += QT_DEPRECATED_WARNINGS # You can also select to disable deprecated APIs only up to a certain version of Qt. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0 +DESTDIR = $$PWD/bin +OBJECTS_DIR = $$PWD/build +MOC_DIR = $$PWD/build + SOURCES += $$files($$PWD/src/*.cpp) HEADERS += $$files($$PWD/include/*.h) diff --git a/src/main.cpp b/src/main.cpp index 0b49622..043de84 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -17,6 +17,10 @@ ////////////////////////////////////////////////////////////////////////////////////// #include "include/akashimain.h" +#ifdef _WIN32 +#include +#endif + #include #include #include @@ -27,6 +31,12 @@ int main(int argc, char* argv[]) { + #ifdef _WIN32 + if (AttachConsole(ATTACH_PARENT_PROCESS)) { + freopen("CONOUT$", "w", stdout); + freopen("CONOUT$", "w", stderr); + } + #endif QApplication app(argc, argv); QApplication::setApplicationName("akashi"); QApplication::setApplicationVersion("0.0.1");