Details
-
Type:
Bug
-
Status: Closed
-
Priority:
P2: Important
-
Resolution: Done
-
Affects Version/s: Qt Creator 4.2.1
-
Fix Version/s: Qt Creator 4.10.0-beta2
-
Component/s: Project & Build Management
-
Labels:None
-
Environment:macOS
-
Commits:517cb44bb0e93720b41a8a62301251e79d39317c
Description
Simple custom recursive qmake function make QtCreator stuck in infinite loop.
Please note that the standalone qmake tool does work fine and process the project correctly.
Create a pro file and add that in it:
TEMPLATE = app defineReplace(pasnox) { isEqual(2, action) { isEqual(TEMPLATE, app) { g = $$pasnox($${1}, yes) } else { g = $$pasnox($${1}, no) } return($${g}) } else:isEqual(2, yes) { return("yes") } else:isEqual(2, no) { return("no") } return() } u = $$pasnox(zynox, action)