how do I create a Qt project option for linux only -
i know can insert .pro file
win32 { libs += libbreakpad_client.lib }
so option used when building under windows.
how do same linux? tried both
linux-g++ { libs += libbreakpad_client.a } linux { libs += libbreakpad_client.a }
but works in qt5-qmake on qt4 doesn't work @ all...
you can use unix
:
unix { message("creating makefile unix ...") libs += libbreakpad_client.a }
Comments
Post a Comment