# QMake Stage for generating GNU Make `Makefile` from Qt `.pro` project files using `QMake`. Behaviour: Runs the `qmake` command for the given Qt `.pro` file ## Config ``` qMake: projectFiles: [String]? # target files to run against, which can sometimes be no targets [default: ""] args: [String]? # arguments to the `qmake` command additional_packages: [String]? # any additional package to install as dependency to the container [default: []] ``` ### Example ```yaml qMake: projectFiles: ["dummy-project.pro"] args: ["-Wall"] ``` This will run `qmake -Wall dummy-project.pro`. ## Report ``` qMake: hasTimedOut: Boolean # Whether the stage timed out while executing exitCode: Int # The exit code of the qmake command stdout: [String] # Standard output, if any stderr: [String] # Standard error output, if any ```