2017-10-27 20:49:06 +08:00
|
|
|
#include QQt's header (add QQt header to includepath)
|
|
|
|
include(../../src/qqt_header.pri)
|
2017-10-29 17:24:10 +08:00
|
|
|
include(../../src/qqt_version.pri)
|
2017-10-27 20:49:06 +08:00
|
|
|
|
|
|
|
#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
|
2017-10-29 17:24:10 +08:00
|
|
|
include(../qqtframe2/qqt_library.pri)
|
2017-10-27 20:49:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEMPLATE = app
|
|
|
|
INCLUDEPATH += .
|
|
|
|
CONFIG += console
|
|
|
|
|
|
|
|
# Input
|
|
|
|
HEADERS += easter.h
|
|
|
|
SOURCES += main.cpp easter.cpp
|