1
0
mirror of https://gitee.com/drabel/LibQQt.git synced 2025-01-04 10:18:44 +08:00
LibQQt/examples/qqtframe/qqtframe.pro

32 lines
829 B
Prolog
Raw Normal View History

2017-09-05 18:07:05 +08:00
#-------------------------------------------------
#
# Project created by QtCreator 2016-06-17T10:03:52
#
#-------------------------------------------------
2017-10-22 12:21:19 +08:00
#include QQt's header (add QQt header to includepath)
include(../../src/qqt_header.pri)
#CONFIG += BUILD_SRC
contains (CONFIG, BUILD_SRC) {
#if you want to build src but not link QQt in this project
#include(../../src/qqt.pri)
} else {
#if you want to link QQt library
include(../qqt_library.pri)
}
2017-09-05 18:07:05 +08:00
2017-09-22 20:18:46 +08:00
QT += core gui network sql xml
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets printsupport serialport
2017-09-17 08:46:57 +08:00
greaterThan(QT_MAJOR_VERSION, 4): DEFINES += __QT5__
2017-09-05 18:07:05 +08:00
TARGET = qqtframe
TEMPLATE = app
2017-09-17 21:38:49 +08:00
INCLUDEPATH += $$PWD
2017-09-05 18:07:05 +08:00
SOURCES += $$PWD/main.cpp $$PWD/qqtapp.cpp $$PWD/qqtwindow.cpp
HEADERS += $$PWD/qqtapp.h $$PWD/qqtwindow.h
FORMS += $$PWD/qqtwindow.ui