summaryrefslogtreecommitdiffstats
path: root/qtbase.pro
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@qt.io>2020-12-17 14:55:57 +0100
committerJoerg Bornemann <joerg.bornemann@qt.io>2021-01-07 15:32:28 +0100
commitad2da2d27a590333fc89a56fc58700a09c3017b3 (patch)
tree7d916e7a15150d1ba3ca4af7f167e33f9d3c6cc6 /qtbase.pro
parentfca3ea040c9d05f112c6fc018f0c8e8c68892642 (diff)
Remove the qmake project files
Remove the qmake project files for most of Qt. Leave the qmake project files for examples, because we still test those in the CI to ensure qmake does not regress. Also leave the qmake project files for utils and other minor parts that lack CMake project files. Task-number: QTBUG-88742 Change-Id: I6cdf059e6204816f617f9624f3ea9822703f73cc Reviewed-by: Edward Welbourne <edward.welbourne@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Kai Koehne <kai.koehne@qt.io>
Diffstat (limited to 'qtbase.pro')
-rw-r--r--qtbase.pro98
1 files changed, 0 insertions, 98 deletions
diff --git a/qtbase.pro b/qtbase.pro
deleted file mode 100644
index 4f1871fe0a..0000000000
--- a/qtbase.pro
+++ /dev/null
@@ -1,98 +0,0 @@
-
-
-#####################################################################
-# Main projectfile
-#####################################################################
-
-load(qt_parts)
-
-sub_qmake.file = qmake/qmake-aux.pro
-sub_doc.subdir = doc
-sub_src.depends += sub_qmake
-
-SUBDIRS += sub_qmake sub_doc
-
-cross_compile: CONFIG += nostrip
-
-confclean.depends += distclean
-confclean.commands = echo The confclean target is obsolete. Please use distclean instead.
-QMAKE_EXTRA_TARGETS += confclean
-
-qmake-clean.commands += (cd qmake && $(MAKE) clean)
-QMAKE_EXTRA_TARGETS += qmake-clean
-CLEAN_DEPS += qmake-clean
-
-# We don't distclean qmake, as it may be needed for rebuilding Makefiles as a
-# recursive distclean proceeds, including beyond qtbase.
-DISTCLEAN_DEPS += qmake-clean
-
-# Files created by configure.
-# config.status (and configure.cache, which is the same for Windows)
-# are omitted for convenience of rebuilds.
-QMAKE_DISTCLEAN += \
- config.summary \
- config.tests/.qmake.cache \
- mkspecs/qconfig.pri \
- mkspecs/qdevice.pri \
- mkspecs/qmodule.pri \
- src/corelib/global/qconfig.h \
- src/corelib/global/qconfig_p.h \
- src/corelib/global/qconfig.cpp \
- bin/qt.conf
-
-CONFIG -= qt
-
-### installations ####
-
-#licheck
-licheck.path = $$[QT_HOST_BINS]
-licheck.files = $$PWD/bin/$$QT_LICHECK
-!isEmpty(QT_LICHECK): INSTALLS += licheck
-
-#fixqt4headers.pl
-fixqt4headers.path = $$[QT_HOST_BINS]
-fixqt4headers.files = $$PWD/bin/fixqt4headers.pl
-INSTALLS += fixqt4headers
-
-#syncqt
-syncqt.path = $$[QT_HOST_BINS]
-syncqt.files = $$PWD/bin/syncqt.pl
-INSTALLS += syncqt
-
-# If we are doing a prefix build, create a "module" pri which enables
-# qtPrepareTool() to find the non-installed syncqt.
-prefix_build|!equals(PWD, $$OUT_PWD) {
-
- cmd = perl -w $$system_path($$PWD/bin/syncqt.pl)
-
- TOOL_PRI = $$OUT_PWD/mkspecs/modules/qt_tool_syncqt.pri
-
- TOOL_PRI_CONT = "QT_TOOL.syncqt.binary = $$val_escape(cmd)"
- write_file($$TOOL_PRI, TOOL_PRI_CONT)|error("Aborting.")
-
- # Then, inject the new tool into the current cache state
- !contains(QMAKE_INTERNAL_INCLUDED_FILES, $$TOOL_PRI) { # before the actual include()!
- added = $$TOOL_PRI
- cache(QMAKE_INTERNAL_INCLUDED_FILES, add transient, added)
- }
- include($$TOOL_PRI)
- cache(QT_TOOL.syncqt.binary, transient)
-
-}
-
-#mkspecs
-mkspecs.path = $$[QT_HOST_DATA]/mkspecs
-mkspecs.files = \
- $$OUT_PWD/mkspecs/qconfig.pri $$OUT_PWD/mkspecs/qmodule.pri \
- $$OUT_PWD/mkspecs/qdevice.pri \
- $$files($$PWD/mkspecs/*)
-mkspecs.files -= $$PWD/mkspecs/modules $$PWD/mkspecs/modules-inst
-INSTALLS += mkspecs
-
-OTHER_FILES += \
- configure \
- header.BSD \
- header.FDL \
- header.LGPL \
- header.LGPL-ONLY \
- sync.profile