| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #-------------------------------------------------
- #
- # Project created by QtCreator 2013-02-06T12:53:55
- #
- #-------------------------------------------------
- QT += core gui
- TARGET = CustomUI
- TEMPLATE = lib
- DESTDIR = ../../output
- DEFINES += CUSTOMUI_LIBRARY
- SOURCES += customui.cpp \
- xtoolbutton.cpp \
- xmainwindow.cpp \
- ximagebutton.cpp \
- xtitlebar.cpp \
- xtoolbar.cpp \
- xtoolbuttonex.cpp \
- xstatusbar.cpp \
- xtextbutton.cpp \
- xlabel.cpp \
- xtitlewidget.cpp \
- xmainwidget.cpp
- HEADERS += customui.h\
- CustomUI_global.h \
- xtoolbutton.h \
- xmainwindow.h \
- ximagebutton.h \
- xtitlebar.h \
- xtoolbar.h \
- xtoolbuttonex.h \
- xstatusbar.h \
- xtextbutton.h \
- xlabel.h \
- xtitlewidget.h \
- xmainwidget.h
- RESOURCES += res.qrc
- FORMS +=
|