mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-31 12:55:33 +08:00
Added qmake project files / standardized #includes
This commit is contained in:
@@ -5,10 +5,10 @@
|
||||
|
||||
#include <QtGui>
|
||||
|
||||
#include <blackmisc/context.h>
|
||||
#include <blackmisc/debug.h>
|
||||
#include <blackmisc/message_factory.h>
|
||||
#include <blackcore/fsd_client.h>
|
||||
#include "blackmisc/context.h"
|
||||
#include "blackmisc/debug.h"
|
||||
#include "blackmisc/message_factory.h"
|
||||
#include "blackcore/fsd_client.h"
|
||||
|
||||
#include "qt_displayer.h"
|
||||
|
||||
|
||||
@@ -8,10 +8,10 @@
|
||||
|
||||
#include <QSystemTrayIcon>
|
||||
#include <QDialog>
|
||||
#include <blackmisc/com_server.h>
|
||||
#include <blackmisc/gui_messages.h>
|
||||
#include "blackmisc/com_server.h"
|
||||
#include "blackmisc/gui_messages.h"
|
||||
|
||||
#include <blackmisc/message_system.h>
|
||||
#include "blackmisc/message_system.h"
|
||||
|
||||
namespace Ui {
|
||||
class BlackD;
|
||||
|
||||
47
src/blackd/blackd.pro
Normal file
47
src/blackd/blackd.pro
Normal file
@@ -0,0 +1,47 @@
|
||||
QT += core gui xml svg network
|
||||
|
||||
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
||||
|
||||
|
||||
PRE_TARGETDEPS += ../../lib/blackmisc.lib \
|
||||
../../lib/blackcore.lib
|
||||
|
||||
TARGET = blackd
|
||||
TEMPLATE = app
|
||||
|
||||
DEPENDPATH += . ..
|
||||
|
||||
INCLUDEPATH += ..
|
||||
|
||||
SOURCES += main.cpp\
|
||||
blackd.cpp \
|
||||
qt_displayer.cpp \
|
||||
|
||||
HEADERS += blackd.h \
|
||||
qt_displayer.h \
|
||||
|
||||
FORMS += blackd.ui
|
||||
|
||||
RESOURCES += \
|
||||
blackd.qrc
|
||||
|
||||
win32-msvc* {
|
||||
PRE_TARGETDEPS += ../../lib/blackmisc.lib \
|
||||
../../lib/blackcore.lib
|
||||
|
||||
LIBS += ../../lib/blackmisc.lib \
|
||||
../../lib/blackcore.lib
|
||||
}
|
||||
|
||||
!win32-msvc* {
|
||||
PRE_TARGETDEPS += ../../lib/libblackmisc.a \
|
||||
../../lib/libblackcore.a
|
||||
|
||||
LIBS += ../../lib/libblackmisc.a \
|
||||
../../lib/libblackcore.a
|
||||
}
|
||||
|
||||
DESTDIR = ../../bin
|
||||
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
//! License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
//! file, You can obtain one at http://mozilla.org/MPL/2.0/
|
||||
|
||||
#include <blackmisc/context.h>
|
||||
#include "blackmisc/context.h"
|
||||
|
||||
#include "blackd.h"
|
||||
#include <QApplication>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
#ifndef QT_DISPLAYER_H
|
||||
#define QT_DISPLAYER_H
|
||||
|
||||
#include <blackmisc/display.h>
|
||||
#include "blackmisc/display.h"
|
||||
|
||||
// Qt includes
|
||||
#include <QPlainTextEdit>
|
||||
|
||||
Reference in New Issue
Block a user