These are options you might want to pass to QMake when configuring your build.
-spec …: Used to specify the platform and compiler of the build. There is no comprehensive list of available options, but usually you will only need the ones mentioned in our build guides (macOS, Linux, Windows)QMAKE_CXX=…: Used to overwrite the C++ compiler binaryCONFIG+=release / CONFIG+=debug: Indicates that the build is meant for release or development, respectively. On non-Windows systems CONFIG+=release is the default, while on Windows, both a release and a development build are generated by defaultCONFIG+=NIGHTLY: Marks the build as a nightly buildCONFIG+=GIT: Signifies that the git command line program is available and causes information about the current state of the repository to be included in the build. Currently this does nothing without CONFIG+=NIGHTLYDEFINES+=QT_NO_DEBUG_OUTPUT: Disables debug output on the terminalDEFINES+=PENCIL2D_RELEASE: Marks the build as a released version of Pencil2DPlease note that there is little benefit in using CONFIG+=NIGHTLY or CONFIG+=GIT in development builds; in fact these options might prevent build acceleration tools such as ccache from working properly.
CONFIG+=debugCONFIG+=release CONFIG+=NIGHTLY CONFIG+=GITCONFIG+=release DEFINES+=QT_NO_DEBUG_OUTPUT DEFINES+=PENCIL2D_RELEASE
1.8.6