keep build stuff in its own dirs, and make console behavior work on windows
This commit is contained in:
parent
85a14dd4bd
commit
0656789234
3
.gitignore
vendored
3
.gitignore
vendored
@ -70,3 +70,6 @@ Thumbs.db
|
|||||||
*.dll
|
*.dll
|
||||||
*.exe
|
*.exe
|
||||||
|
|
||||||
|
bin/
|
||||||
|
build/
|
||||||
|
|
||||||
|
@ -15,6 +15,10 @@ DEFINES += QT_DEPRECATED_WARNINGS
|
|||||||
# You can also select to disable deprecated APIs only up to a certain version of Qt.
|
# 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
|
#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)
|
SOURCES += $$files($$PWD/src/*.cpp)
|
||||||
|
|
||||||
HEADERS += $$files($$PWD/include/*.h)
|
HEADERS += $$files($$PWD/include/*.h)
|
||||||
|
10
src/main.cpp
10
src/main.cpp
@ -17,6 +17,10 @@
|
|||||||
//////////////////////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////////////////////
|
||||||
#include "include/akashimain.h"
|
#include "include/akashimain.h"
|
||||||
|
|
||||||
|
#ifdef _WIN32
|
||||||
|
#include <Windows.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <QApplication>
|
#include <QApplication>
|
||||||
#include <QCommandLineOption>
|
#include <QCommandLineOption>
|
||||||
#include <QCommandLineParser>
|
#include <QCommandLineParser>
|
||||||
@ -27,6 +31,12 @@
|
|||||||
|
|
||||||
int main(int argc, char* argv[])
|
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 app(argc, argv);
|
||||||
QApplication::setApplicationName("akashi");
|
QApplication::setApplicationName("akashi");
|
||||||
QApplication::setApplicationVersion("0.0.1");
|
QApplication::setApplicationVersion("0.0.1");
|
||||||
|
Loading…
Reference in New Issue
Block a user