diff options
author | Oswald Buddenhagen <oswald.buddenhagen@nokia.com> | 2009-01-29 20:11:02 +0100 |
---|---|---|
committer | Oswald Buddenhagen <oswald.buddenhagen@nokia.com> | 2009-02-27 18:04:36 +0100 |
commit | 1c2f0f64c154f7d6c0e3d455010b85d78391002e (patch) | |
tree | 5829977cc5922453d40a4b1d9b033aeff5eae446 /src/plugins/projectexplorer/projectexplorer.pro | |
parent | df8ffb09fdd29cbb7ae952e5016a533cde145365 (diff) | |
download | qt-creator-1c2f0f64c154f7d6c0e3d455010b85d78391002e.tar.gz |
move abstractprocess and consoleprocess to libs/utils/
will use it also in the debugger, and pulling it in from projectexplorer
just seems wrong.
Diffstat (limited to 'src/plugins/projectexplorer/projectexplorer.pro')
-rw-r--r-- | src/plugins/projectexplorer/projectexplorer.pro | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/plugins/projectexplorer/projectexplorer.pro b/src/plugins/projectexplorer/projectexplorer.pro index 1feeea4ebd..460dd65871 100644 --- a/src/plugins/projectexplorer/projectexplorer.pro +++ b/src/plugins/projectexplorer/projectexplorer.pro @@ -5,6 +5,8 @@ QT += xml \ include(../../qworkbenchplugin.pri) include(projectexplorer_dependencies.pri) include(../../shared/scriptwrapper/scriptwrapper.pri) +include(../../libs/utils/utils.pri) +INCLUDEPATH += $$PWD/../../libs/utils HEADERS += projectexplorer.h \ projectexplorer_export.h \ projectwindow.h \ @@ -37,8 +39,6 @@ HEADERS += projectexplorer.h \ editorsettingspropertiespage.h \ runconfiguration.h \ applicationlauncher.h \ - consoleprocess.h \ - abstractprocess.h \ applicationrunconfiguration.h \ runsettingspropertiespage.h \ projecttreewidget.h \ @@ -114,12 +114,10 @@ FORMS += dependenciespanel.ui \ buildstepspage.ui \ removefiledialog.ui win32 { - SOURCES += consoleprocess_win.cpp \ - applicationlauncher_win.cpp \ + SOURCES += applicationlauncher_win.cpp \ winguiprocess.cpp HEADERS += winguiprocess.h } -else:unix:SOURCES += consoleprocess_unix.cpp \ - applicationlauncher_x11.cpp +else:unix:SOURCES += applicationlauncher_x11.cpp RESOURCES += projectexplorer.qrc DEFINES += PROJECTEXPLORER_LIBRARY |