Important: Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct
Command Line Application with qmake in MacOSX?
-
Hi,
I need to compile my command line application on MacOSX.
When compiling Qt creates a .app package that I don't need and don't want.Sure, I can use some mv's etc to move the binary out of the .app directory, but is there maybe an option (or .pro -Template) that doesn't even create the app-structure?
I already tried "CONFIG += console" but no luck..
Cheers,
Keiko
-
@
CONFIG-=app_bundle
@
-
Thank's a lot! :)