mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-23 12:07:03 +08:00
23 lines
456 B
Prolog
23 lines
456 B
Prolog
|
QT += widgets
|
||
|
TARGET = bindablesubscription
|
||
|
|
||
|
SOURCES += main.cpp \
|
||
|
bindablesubscription.cpp \
|
||
|
bindableuser.cpp \
|
||
|
../shared/subscriptionwindow.cpp
|
||
|
|
||
|
target.path = $$[QT_INSTALL_EXAMPLES]/corelib/bindableproperties/bindablesubscription
|
||
|
INSTALLS += target
|
||
|
|
||
|
FORMS += \
|
||
|
../shared/subscriptionwindow.ui
|
||
|
|
||
|
HEADERS += \
|
||
|
bindablesubscription.h \
|
||
|
bindableuser.h \
|
||
|
../shared/subscriptionwindow.h
|
||
|
|
||
|
RESOURCES += \
|
||
|
../shared/countries.qrc
|
||
|
|