aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/common
diff options
context:
space:
mode:
authorFabian Kosmale <fabian.kosmale@qt.io>2021-01-15 13:37:58 +0100
committerFabian Kosmale <fabian.kosmale@qt.io>2021-01-15 15:34:22 +0100
commit78ab4b8d8b75fed240cded1a3f182048e56a8823 (patch)
tree96cdc6b049a1f8330648134eecfe74b75be28350 /src/qml/common
parentbd017c18ab1faa6011db12afadade74172e03de7 (diff)
Remove the qmake project files
Remove all qmake project files, except for examples which are used to test that qmake continues to work. Change-Id: Ic4abb72dc2dcd75df7a797c56056b6b3c5fe62ac Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io> Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
Diffstat (limited to 'src/qml/common')
-rw-r--r--src/qml/common/common.pri40
1 files changed, 0 insertions, 40 deletions
diff --git a/src/qml/common/common.pri b/src/qml/common/common.pri
deleted file mode 100644
index 0456232162..0000000000
--- a/src/qml/common/common.pri
+++ /dev/null
@@ -1,40 +0,0 @@
-!build_pass {
- # Create a header containing a hash that describes this library. For a
- # released version of Qt, we'll use the .tag file that is updated by git
- # archive with the commit hash. For unreleased versions, we'll ask git
- # describe. Note that it won't update unless qmake is run again, even if
- # the commit change also changed something in this library.
- tagFile = $$PWD/../../.tag
- tag =
- exists($$tagFile) {
- tag = $$cat($$tagFile, singleline)
- QMAKE_INTERNAL_INCLUDED_FILES += $$tagFile
- }
- !equals(tag, "$${LITERAL_DOLLAR}Format:%H$${LITERAL_DOLLAR}") {
- QML_COMPILE_HASH = $$tag
- } else:exists($$PWD/../../.git) {
- commit = $$system(git rev-parse HEAD)
- QML_COMPILE_HASH = $$commit
- }
- compile_hash_contents = \
- "// Generated file, DO NOT EDIT" \
- "$${LITERAL_HASH}define QML_COMPILE_HASH \"$$QML_COMPILE_HASH\"" \
- "$${LITERAL_HASH}define QML_COMPILE_HASH_LENGTH $$str_size($$QML_COMPILE_HASH)"
- write_file("$$OUT_PWD/qml_compile_hash_p.h", compile_hash_contents)|error()
-}
-
-HEADERS += \
- $$PWD/qjsnumbercoercion.h \
- $$PWD/qqmlapiversion_p.h \
- $$PWD/qqmljsdiagnosticmessage_p.h \
- $$PWD/qqmljsfixedpoolarray_p.h \
- $$PWD/qqmljsmemorypool_p.h \
- $$PWD/qqmljssourcelocation_p.h \
- $$PWD/qv4alloca_p.h \
- $$PWD/qv4calldata_p.h \
- $$PWD/qv4compileddata_p.h \
- $$PWD/qv4staticvalue_p.h \
- $$PWD/qv4stringtoarrayindex_p.h
-
-SOURCES += \
- $$PWD/qjsnumbercoercion.cpp