Maemo: Move MaemoRunControl classes to their own files.

The maemorunconfiguration.cpp file contained (and still contains)
too many different classes.
This commit is contained in:
ck
2010-01-06 18:20:43 +01:00
parent cf010f764a
commit 138b12b5dc
4 changed files with 863 additions and 748 deletions

View File

@@ -3,21 +3,24 @@ SUPPORT_QT_MAEMO = $$(QTCREATOR_WITH_MAEMO)
message("Adding experimental support for Qt/Maemo applications.")
DEFINES += QTCREATOR_WITH_MAEMO
# DEFINES += USE_SSH_LIB
# LIBS += -L/opt/ne7ssh/lib/ -lnet7ssh
# LIBS += -L/opt/ne7sshModified/lib/ \
# -lnet7ssh
HEADERS += $$PWD/maemorunconfiguration.h \
$$PWD/maemomanager.h \
$$PWD/maemotoolchain.h \
$$PWD/maemodeviceconfigurations.h \
$$PWD/maemosettingspage.h \
$$PWD/maemosshconnection.h \
$$PWD/maemosshthread.h
$$PWD/maemosshthread.h \
$$PWD/maemoruncontrol.h
SOURCES += $$PWD/maemorunconfiguration.cpp \
$$PWD/maemomanager.cpp \
$$PWD/maemotoolchain.cpp \
$$PWD/maemodeviceconfigurations.cpp \
$$PWD/maemosettingspage.cpp \
$$PWD/maemosshconnection.cpp \
$$PWD/maemosshthread.cpp
$$PWD/maemosshthread.cpp \
$$PWD/maemoruncontrol.cpp
FORMS += $$PWD/maemosettingswidget.ui
RESOURCES += $$PWD/qt-maemo.qrc
}