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

34 lines
714 B
Prolog
Raw Normal View History

2017-09-05 18:07:05 +08:00
#-------------------------------------------------
#
# Project created by QtCreator 2016-09-30T09:34:03
#
#-------------------------------------------------
2017-10-23 11:18:52 +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
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = cmdwidget
TEMPLATE = app
SOURCES += main.cpp\
cmdwidget.cpp \
rlineedit.cpp
HEADERS += cmdwidget.h \
rlineedit.h
FORMS += cmdwidget.ui