diff options
author | Eike Ziller <eike.ziller@qt.io> | 2022-01-14 12:44:53 +0100 |
---|---|---|
committer | Eike Ziller <eike.ziller@qt.io> | 2022-01-20 12:18:15 +0000 |
commit | 9d8a419d107ae8219c84bc9178bfed76b94fa930 (patch) | |
tree | 110e9f16dd2e3d9c03b2dc38d2b261663606fb4f /src/plugins/cpaster | |
parent | 3c3580c7701ccf43ca014e19aa5fa210e90b4ed3 (diff) | |
download | qt-creator-9d8a419d107ae8219c84bc9178bfed76b94fa930.tar.gz |
Remove qmake build files
Removes qmake as a build system for building Qt Creator itself.
Keep them for some tests that are not completely moved to CMake yet.
Change-Id: I846c6ef65626b6dfae6375fdc85d00677aa8c2fb
Reviewed-by: hjk <hjk@qt.io>
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'src/plugins/cpaster')
-rw-r--r-- | src/plugins/cpaster/cpaster.pro | 40 | ||||
-rw-r--r-- | src/plugins/cpaster/cpaster_dependencies.pri | 7 | ||||
-rw-r--r-- | src/plugins/cpaster/frontend/frontend.pro | 25 |
3 files changed, 0 insertions, 72 deletions
diff --git a/src/plugins/cpaster/cpaster.pro b/src/plugins/cpaster/cpaster.pro deleted file mode 100644 index d35c042964..0000000000 --- a/src/plugins/cpaster/cpaster.pro +++ /dev/null @@ -1,40 +0,0 @@ -QT += network -include(../../qtcreatorplugin.pri) -HEADERS += cpasterplugin.h \ - dpastedotcomprotocol.h \ - protocol.h \ - pasteview.h \ - cpasterconstants.h \ - pastebindotcomprotocol.h \ - settings.h \ - pasteselectdialog.h \ - columnindicatortextedit.h \ - fileshareprotocol.h \ - fileshareprotocolsettingspage.h \ - stickynotespasteprotocol.h \ - urlopenprotocol.h \ - codepasterservice.h - -SOURCES += cpasterplugin.cpp \ - dpastedotcomprotocol.cpp \ - protocol.cpp \ - pasteview.cpp \ - pastebindotcomprotocol.cpp \ - settings.cpp \ - pasteselectdialog.cpp \ - columnindicatortextedit.cpp \ - fileshareprotocol.cpp \ - fileshareprotocolsettingspage.cpp \ - stickynotespasteprotocol.cpp \ - urlopenprotocol.cpp - -FORMS += \ - pasteselect.ui \ - pasteview.ui \ - pastebindotcomsettings.ui -include(../../shared/cpaster/cpaster.pri) - -RESOURCES += \ - cpaster.qrc - -DEFINES *= CPASTER_PLUGIN_GUI diff --git a/src/plugins/cpaster/cpaster_dependencies.pri b/src/plugins/cpaster/cpaster_dependencies.pri deleted file mode 100644 index f398525848..0000000000 --- a/src/plugins/cpaster/cpaster_dependencies.pri +++ /dev/null @@ -1,7 +0,0 @@ -QTC_PLUGIN_NAME = CodePaster -QTC_LIB_DEPENDS += \ - extensionsystem \ - utils -QTC_PLUGIN_DEPENDS += \ - texteditor \ - coreplugin diff --git a/src/plugins/cpaster/frontend/frontend.pro b/src/plugins/cpaster/frontend/frontend.pro deleted file mode 100644 index cca00ec980..0000000000 --- a/src/plugins/cpaster/frontend/frontend.pro +++ /dev/null @@ -1,25 +0,0 @@ -TARGET=cpaster - -QTC_LIB_DEPENDS += \ - extensionsystem \ - utils -QTC_PLUGIN_DEPENDS += \ - coreplugin - -include(../../../qtcreatortool.pri) - -QT += network - -HEADERS = ../protocol.h \ - ../cpasterconstants.h \ - ../dpastedotcomprotocol.h \ - ../pastebindotcomprotocol.h \ - ../urlopenprotocol.h \ - argumentscollector.h - -SOURCES += ../protocol.cpp \ - ../dpastedotcomprotocol.cpp \ - ../pastebindotcomprotocol.cpp \ - ../urlopenprotocol.cpp \ - argumentscollector.cpp \ - main.cpp |