2008-12-02 12:01:29 +01:00
|
|
|
TEMPLATE = lib
|
|
|
|
|
TARGET = Utils
|
2009-06-04 14:43:16 +02:00
|
|
|
QT += gui \
|
|
|
|
|
network
|
2009-05-08 12:09:21 +02:00
|
|
|
DEFINES += QTCREATOR_UTILS_LIBRARY
|
2009-05-08 11:08:29 +02:00
|
|
|
include(../../qtcreatorlibrary.pri)
|
2009-06-04 14:43:16 +02:00
|
|
|
SOURCES += reloadpromptutils.cpp \
|
2008-12-02 12:01:29 +01:00
|
|
|
settingsutils.cpp \
|
|
|
|
|
filesearch.cpp \
|
|
|
|
|
pathchooser.cpp \
|
2009-05-08 12:21:18 +02:00
|
|
|
pathlisteditor.cpp \
|
2008-12-02 12:01:29 +01:00
|
|
|
filewizardpage.cpp \
|
|
|
|
|
filewizarddialog.cpp \
|
|
|
|
|
projectintropage.cpp \
|
|
|
|
|
basevalidatinglineedit.cpp \
|
|
|
|
|
filenamevalidatinglineedit.cpp \
|
|
|
|
|
projectnamevalidatinglineedit.cpp \
|
|
|
|
|
codegeneration.cpp \
|
|
|
|
|
newclasswidget.cpp \
|
|
|
|
|
classnamevalidatinglineedit.cpp \
|
|
|
|
|
linecolumnlabel.cpp \
|
|
|
|
|
fancylineedit.cpp \
|
|
|
|
|
qtcolorbutton.cpp \
|
2009-03-26 18:02:43 +01:00
|
|
|
savedaction.cpp \
|
2008-12-02 12:01:29 +01:00
|
|
|
submiteditorwidget.cpp \
|
2009-03-23 12:03:20 +01:00
|
|
|
synchronousprocess.cpp \
|
2009-05-06 14:26:20 +02:00
|
|
|
submitfieldwidget.cpp \
|
2009-05-14 16:37:17 +02:00
|
|
|
consoleprocess.cpp \
|
2009-05-15 15:41:00 +02:00
|
|
|
uncommentselection.cpp \
|
2009-06-04 14:43:16 +02:00
|
|
|
parameteraction.cpp \
|
2009-06-19 16:34:38 +02:00
|
|
|
treewidgetcolumnstretcher.cpp \
|
2009-07-15 12:06:21 +02:00
|
|
|
checkablemessagebox.cpp \
|
|
|
|
|
styledbar.cpp
|
|
|
|
|
|
2009-06-04 14:43:16 +02:00
|
|
|
win32 {
|
2009-03-03 17:11:27 +01:00
|
|
|
SOURCES += abstractprocess_win.cpp \
|
2009-06-04 14:43:16 +02:00
|
|
|
consoleprocess_win.cpp \
|
|
|
|
|
winutils.cpp
|
2009-03-03 14:01:58 +01:00
|
|
|
HEADERS += winutils.h
|
|
|
|
|
}
|
2009-06-04 14:43:16 +02:00
|
|
|
else:SOURCES += consoleprocess_unix.cpp
|
|
|
|
|
HEADERS += utils_global.h \
|
2008-12-02 12:01:29 +01:00
|
|
|
reloadpromptutils.h \
|
|
|
|
|
settingsutils.h \
|
|
|
|
|
filesearch.h \
|
|
|
|
|
listutils.h \
|
|
|
|
|
pathchooser.h \
|
2009-05-08 12:21:18 +02:00
|
|
|
pathlisteditor.h \
|
2008-12-02 12:01:29 +01:00
|
|
|
filewizardpage.h \
|
|
|
|
|
filewizarddialog.h \
|
|
|
|
|
projectintropage.h \
|
|
|
|
|
basevalidatinglineedit.h \
|
|
|
|
|
filenamevalidatinglineedit.h \
|
|
|
|
|
projectnamevalidatinglineedit.h \
|
|
|
|
|
codegeneration.h \
|
|
|
|
|
newclasswidget.h \
|
|
|
|
|
classnamevalidatinglineedit.h \
|
|
|
|
|
linecolumnlabel.h \
|
|
|
|
|
fancylineedit.h \
|
|
|
|
|
qtcolorbutton.h \
|
2009-03-26 18:02:43 +01:00
|
|
|
savedaction.h \
|
2008-12-02 12:01:29 +01:00
|
|
|
submiteditorwidget.h \
|
2009-01-29 20:11:02 +01:00
|
|
|
abstractprocess.h \
|
|
|
|
|
consoleprocess.h \
|
2009-03-23 12:03:20 +01:00
|
|
|
synchronousprocess.h \
|
2009-05-14 16:37:17 +02:00
|
|
|
submitfieldwidget.h \
|
2009-05-15 15:41:00 +02:00
|
|
|
uncommentselection.h \
|
2009-06-04 14:43:16 +02:00
|
|
|
parameteraction.h \
|
2009-06-19 16:34:38 +02:00
|
|
|
treewidgetcolumnstretcher.h \
|
2009-06-16 17:55:02 +02:00
|
|
|
checkablemessagebox.h \
|
2009-07-15 12:06:21 +02:00
|
|
|
qtcassert.h \
|
|
|
|
|
styledbar.h
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
FORMS += filewizardpage.ui \
|
2009-06-04 14:43:16 +02:00
|
|
|
projectintropage.ui \
|
|
|
|
|
newclasswidget.ui \
|
2009-06-19 16:34:38 +02:00
|
|
|
submiteditorwidget.ui \
|
|
|
|
|
checkablemessagebox.ui
|
2009-03-23 12:03:20 +01:00
|
|
|
RESOURCES += utils.qrc
|