35 lines
922 B
Prolog
35 lines
922 B
Prolog
|
#-------------------------------------------------
|
||
|
#
|
||
|
# Project created by QtCreator 2017-01-05T22:11:54
|
||
|
#
|
||
|
#-------------------------------------------------
|
||
|
|
||
|
QT += core gui
|
||
|
|
||
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
||
|
|
||
|
TARGET = lunarcalendarwidget
|
||
|
TEMPLATE = app
|
||
|
MOC_DIR = temp/moc
|
||
|
RCC_DIR = temp/rcc
|
||
|
UI_DIR = temp/ui
|
||
|
OBJECTS_DIR = temp/obj
|
||
|
DESTDIR = $$PWD/../bin
|
||
|
CONFIG += qt warn_off
|
||
|
RESOURCES += main.qrc
|
||
|
|
||
|
SOURCES += main.cpp
|
||
|
SOURCES += frmlunarcalendarwidget.cpp
|
||
|
SOURCES += lunarcalendaritem.cpp
|
||
|
SOURCES += lunarcalendarinfo.cpp
|
||
|
SOURCES += lunarcalendarwidget.cpp
|
||
|
|
||
|
HEADERS += frmlunarcalendarwidget.h
|
||
|
HEADERS += lunarcalendaritem.h
|
||
|
HEADERS += lunarcalendarinfo.h
|
||
|
HEADERS += lunarcalendarwidget.h
|
||
|
|
||
|
FORMS += frmlunarcalendarwidget.ui
|
||
|
|
||
|
INCLUDEPATH += $$PWD
|