aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2022-01-26 11:40:20 +0100
committerEike Ziller <eike.ziller@qt.io>2022-01-26 13:22:04 +0000
commitc1eca424e6e9e505a378cf131f5c0ebc060983a5 (patch)
treedc1dd5a39de1488447f413911459a23095aab9dd
parent5c51351dc50558796ae37440345140d45788fa93 (diff)
Remove qmake build files
Change-Id: Ia5160d6796d301051c5b02c91f65b0a449cad136 Reviewed-by: hjk <hjk@qt.io>
-rw-r--r--haskell.pro7
-rw-r--r--plugins/haskell/config.pri12
-rw-r--r--plugins/haskell/haskell.pro61
-rw-r--r--tests/auto/auto.pro2
-rw-r--r--tests/auto/tokenizer/tokenizer.pro11
5 files changed, 0 insertions, 93 deletions
diff --git a/haskell.pro b/haskell.pro
deleted file mode 100644
index a8601b4..0000000
--- a/haskell.pro
+++ /dev/null
@@ -1,7 +0,0 @@
-TEMPLATE = subdirs
-
-SUBDIRS += \
- plugins/haskell
-
-!isEmpty(BUILD_TESTS): SUBDIRS += tests/auto
-
diff --git a/plugins/haskell/config.pri b/plugins/haskell/config.pri
deleted file mode 100644
index 0e52377..0000000
--- a/plugins/haskell/config.pri
+++ /dev/null
@@ -1,12 +0,0 @@
-# Qt Creator linking
-
-## Either set the IDE_SOURCE_TREE when running qmake,
-## or set the QTC_SOURCE environment variable, to override the default setting
-isEmpty(IDE_SOURCE_TREE): IDE_SOURCE_TREE = $$(QTC_SOURCE)
-isEmpty(IDE_SOURCE_TREE): IDE_SOURCE_TREE = "$$PWD/../../../qtcreator_src"
-
-## Either set the IDE_BUILD_TREE when running qmake,
-## or set the QTC_BUILD environment variable, to override the default setting
-isEmpty(IDE_BUILD_TREE): IDE_BUILD_TREE = $$(QTC_BUILD)
-isEmpty(IDE_BUILD_TREE): IDE_BUILD_TREE = "$$PWD/../../../qtcreator_build"
-
diff --git a/plugins/haskell/haskell.pro b/plugins/haskell/haskell.pro
deleted file mode 100644
index df46a27..0000000
--- a/plugins/haskell/haskell.pro
+++ /dev/null
@@ -1,61 +0,0 @@
-DEFINES += HASKELL_LIBRARY
-
-# Haskell files
-
-SOURCES += \
- haskelleditorfactory.cpp \
- haskellplugin.cpp \
- haskellhighlighter.cpp \
- haskelltokenizer.cpp \
- haskellmanager.cpp \
- optionspage.cpp \
- haskellproject.cpp \
- haskellbuildconfiguration.cpp \
- stackbuildstep.cpp \
- haskellrunconfiguration.cpp
-
-HEADERS += \
- haskell_global.h \
- haskellconstants.h \
- haskelleditorfactory.h \
- haskellplugin.h \
- haskellhighlighter.h \
- haskelltokenizer.h \
- haskellmanager.h \
- optionspage.h \
- haskellproject.h \
- haskellbuildconfiguration.h \
- stackbuildstep.h \
- haskellrunconfiguration.h
-
-## uncomment to build plugin into user config directory
-## <localappdata>/plugins/<ideversion>
-## where <localappdata> is e.g.
-## "%LOCALAPPDATA%\QtProject\qtcreator" on Windows Vista and later
-## "$XDG_DATA_HOME/data/QtProject/qtcreator" or "~/.local/share/data/QtProject/qtcreator" on Linux
-## "~/Library/Application Support/QtProject/Qt Creator" on OS X
-#USE_USER_DESTDIR = yes
-
-###### If the plugin can be depended upon by other plugins, this code needs to be outsourced to
-###### <dirname>_dependencies.pri, where <dirname> is the name of the directory containing the
-###### plugin's sources.
-
-QTC_PLUGIN_NAME = Haskell
-QTC_LIB_DEPENDS += \
- # nothing here at this time
-
-QTC_PLUGIN_DEPENDS += \
- coreplugin \
- projectexplorer \
- texteditor
-
-QTC_PLUGIN_RECOMMENDS += \
- # optional plugin dependencies. nothing here at this time
-
-###### End _dependencies.pri contents ######
-
-include(config.pri)
-include($$IDE_SOURCE_TREE/src/qtcreatorplugin.pri)
-
-RESOURCES += \
- haskell.qrc
diff --git a/tests/auto/auto.pro b/tests/auto/auto.pro
deleted file mode 100644
index 200dc2f..0000000
--- a/tests/auto/auto.pro
+++ /dev/null
@@ -1,2 +0,0 @@
-TEMPLATE = subdirs
-SUBDIRS += tokenizer
diff --git a/tests/auto/tokenizer/tokenizer.pro b/tests/auto/tokenizer/tokenizer.pro
deleted file mode 100644
index a9ec439..0000000
--- a/tests/auto/tokenizer/tokenizer.pro
+++ /dev/null
@@ -1,11 +0,0 @@
-include(../../../plugins/haskell/config.pri)
-
-include($$IDE_SOURCE_TREE/tests/auto/qttest.pri)
-
-SOURCES += tst_tokenizer.cpp \
- $$PWD/../../../plugins/haskell/haskelltokenizer.cpp
-
-HEADERS += \
- $$PWD/../../../plugins/haskell/haskelltokenizer.h
-
-INCLUDEPATH += $$PWD/../../../plugins/haskell