keep build stuff in its own dirs, and make console behavior work on windows

This commit is contained in:
scatterflower 2020-08-27 15:11:50 -05:00
parent 85a14dd4bd
commit 0656789234
3 changed files with 17 additions and 0 deletions

3
.gitignore vendored
View File

@ -70,3 +70,6 @@ Thumbs.db
*.dll
*.exe
bin/
build/

View File

@ -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)

View File

@ -17,6 +17,10 @@
//////////////////////////////////////////////////////////////////////////////////////
#include "include/akashimain.h"
#ifdef _WIN32
#include <Windows.h>
#endif
#include <QApplication>
#include <QCommandLineOption>
#include <QCommandLineParser>
@ -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");