23 lines
501 B
Prolog
23 lines
501 B
Prolog
QT += core gui network
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
greaterThan(QT_MAJOR_VERSION, 5): QT += core5compat
|
|
|
|
TARGET = netserver
|
|
TEMPLATE = app
|
|
DESTDIR = $$PWD/../bin
|
|
RC_FILE = qrc/main.rc
|
|
|
|
SOURCES += main.cpp
|
|
HEADERS += head.h
|
|
RESOURCES += qrc/main.qrc
|
|
|
|
INCLUDEPATH += $$PWD
|
|
INCLUDEPATH += $$PWD/api
|
|
INCLUDEPATH += $$PWD/form
|
|
|
|
include ($$PWD/api/api.pri)
|
|
include ($$PWD/form/form.pri)
|
|
|
|
INCLUDEPATH += $$PWD/../core_qui
|
|
include ($$PWD/../core_qui/core_qui.pri)
|