summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2022-01-26 11:38:35 +0100
committerEike Ziller <eike.ziller@qt.io>2022-01-26 13:12:09 +0000
commit02804556234e88866ac174fc8ea4b91f8b35ac5a (patch)
treeba14dfd100a13007fa7b58fcc11646f3256ce716
parentf37bd2436d2a2349718f69f67e9ca3e49094b977 (diff)
Remove qmake build files
Change-Id: I88f7bf7b04429a2501ad34dea7663ee8dafba820 Reviewed-by: hjk <hjk@qt.io>
-rw-r--r--doc/doc.pri6
-rw-r--r--fossil.pro11
-rw-r--r--plugins/fossil/fossil.pro40
-rw-r--r--plugins/fossil/fossil_dependencies.pri9
4 files changed, 0 insertions, 66 deletions
diff --git a/doc/doc.pri b/doc/doc.pri
deleted file mode 100644
index 155d6af..0000000
--- a/doc/doc.pri
+++ /dev/null
@@ -1,6 +0,0 @@
-build_online_docs: \
- DOC_FILES = $$PWD/fossil-online.qdocconf
-else: \
- DOC_FILES = $$PWD/fossil.qdocconf
-
-include($$IDE_SOURCE_TREE/docs.pri)
diff --git a/fossil.pro b/fossil.pro
deleted file mode 100644
index 629cd87..0000000
--- a/fossil.pro
+++ /dev/null
@@ -1,11 +0,0 @@
-isEmpty(IDE_SOURCE_TREE): IDE_SOURCE_TREE = $$(QTC_SOURCE)
-isEmpty(IDE_SOURCE_TREE): error("You need to set the environment variable QTC_SOURCE to point to the directory where the Qt Creator sources are")
-
-isEmpty(IDE_BUILD_TREE): IDE_BUILD_TREE = $$(QTC_BUILD)
-isEmpty(IDE_BUILD_TREE): error("You need to set the environment variable QTC_BUILD to point to the directory where Qt Creator was built")
-
-TEMPLATE = subdirs
-SUBDIRS += plugins/fossil
-
-include($$IDE_SOURCE_TREE/qtcreator.pri)
-include(doc/doc.pri)
diff --git a/plugins/fossil/fossil.pro b/plugins/fossil/fossil.pro
deleted file mode 100644
index c423ad1..0000000
--- a/plugins/fossil/fossil.pro
+++ /dev/null
@@ -1,40 +0,0 @@
-isEmpty(IDE_SOURCE_TREE): IDE_SOURCE_TREE = $$(QTC_SOURCE)
-isEmpty(IDE_SOURCE_TREE): error("You need to set the environment variable QTC_SOURCE to point to the directory where the Qt Creator sources are")
-
-isEmpty(IDE_BUILD_TREE): IDE_BUILD_TREE = $$(QTC_BUILD)
-isEmpty(IDE_BUILD_TREE): error("You need to set the environment variable QTC_BUILD to point to the directory where Qt Creator was built")
-
-include($$IDE_SOURCE_TREE/src/qtcreatorplugin.pri)
-SOURCES += \
- fossilclient.cpp \
- fossilplugin.cpp \
- fossilsettings.cpp \
- commiteditor.cpp \
- fossilcommitwidget.cpp \
- fossileditor.cpp \
- annotationhighlighter.cpp \
- pullorpushdialog.cpp \
- branchinfo.cpp \
- configuredialog.cpp \
- revisioninfo.cpp \
- wizard/fossiljsextension.cpp
-HEADERS += \
- fossilclient.h \
- constants.h \
- fossilplugin.h \
- fossilsettings.h \
- commiteditor.h \
- fossilcommitwidget.h \
- fossileditor.h \
- annotationhighlighter.h \
- pullorpushdialog.h \
- branchinfo.h \
- configuredialog.h \
- revisioninfo.h \
- wizard/fossiljsextension.h
-FORMS += \
- revertdialog.ui \
- fossilcommitpanel.ui \
- pullorpushdialog.ui \
- configuredialog.ui
-RESOURCES += fossil.qrc
diff --git a/plugins/fossil/fossil_dependencies.pri b/plugins/fossil/fossil_dependencies.pri
deleted file mode 100644
index 44d5212..0000000
--- a/plugins/fossil/fossil_dependencies.pri
+++ /dev/null
@@ -1,9 +0,0 @@
-QTC_PLUGIN_NAME = Fossil
-QTC_LIB_DEPENDS += \
- extensionsystem \
- utils
-QTC_PLUGIN_DEPENDS += \
- texteditor \
- projectexplorer \
- coreplugin \
- vcsbase