summaryrefslogtreecommitdiffstats
path: root/tools/qmake/mkspecs/features/functions.prf
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@qt.io>2017-04-18 14:26:46 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2017-04-21 18:26:58 +0000
commit804063c0ead7f87dc85825501b7f44dd3783841a (patch)
tree51b2d912e627ac7f6dbbc8fa980528deb73a5812 /tools/qmake/mkspecs/features/functions.prf
parentf8460367fcb6f16c6c2e06d09fabca2cd02ba854 (diff)
Remove unused qmake functions and helper scripts
Change-Id: I8d59ccc5967193db55ac00410f09506a3b040dfe Reviewed-by: Michal Klocek <michal.klocek@qt.io>
Diffstat (limited to 'tools/qmake/mkspecs/features/functions.prf')
-rw-r--r--tools/qmake/mkspecs/features/functions.prf33
1 files changed, 0 insertions, 33 deletions
diff --git a/tools/qmake/mkspecs/features/functions.prf b/tools/qmake/mkspecs/features/functions.prf
index 53194e421..ed1133037 100644
--- a/tools/qmake/mkspecs/features/functions.prf
+++ b/tools/qmake/mkspecs/features/functions.prf
@@ -328,39 +328,6 @@ defineReplace(extractCFlag) {
return ($$member(OPTION, 1))
}
-defineReplace(findMocables) {
- mocables = $$system("$$system_path(python $$QTWEBENGINE_ROOT/tools/buildscripts/find-mocables $$_PRO_FILE_PWD_ $$1)")
- mocables = $$replace(mocables, $$re_escape($$system_path($${_PRO_FILE_PWD_}/)), '')
- return($$mocables)
-}
-
-defineReplace(findIncludedMocFiles) {
- return($$system("$$system_path(python $$QTWEBENGINE_ROOT/tools/buildscripts/find-included-moc-files $$_PRO_FILE_PWD_ $$1)"))
-}
-
-defineReplace(mocOutput) {
- out = $$1
- # The order is important, since the output of the second replace would end up accidentaly transformed by the first one
- for(ext, $$list($${QMAKE_EXT_CPP})): \
- out = $$replace(out, ^(.*)($$re_escape($${ext})), $${QMAKE_CPP_MOD_MOC}\\1$${QMAKE_EXT_CPP_MOC})
- for(ext, $$list($${QMAKE_EXT_H})): \
- out = $$replace(out, ^(.*)($$re_escape($${ext})), $${QMAKE_H_MOD_MOC}\\1$${first(QMAKE_EXT_CPP)})
- return($$out)
-}
-
-defineReplace(rccOutput) {
- out = $$1
- out = $$replace(out, .qrc, .cpp)
- out = $$join(out, qrc_, qrc_)
- return($$out)
-}
-
-defineReplace(rccExternFunc) {
- out = $$1
- out = $$replace(out, .qrc, )
- return($$out)
-}
-
defineReplace(which) {
out = $$1
win32 {