Problems with MAC (string.h: No such file or directory) [solved]
-
The first error means that it has found a dependency on libpq and simply failed to copy it from /usr/local/pgsql/lib. You might have it elsewhere and have to copy it manually.
The warnings on the second run is normal since you already ran macdeployqt. You can see it on line 3.
-
First thing, copy the library (don't forget to update its paths) and try to run your application.
-
-
Do you mean the icon that is shown to the user ? (i.e. the music note for iTunes ?)
-
Add this
@
<key>CFBundleIconFile</key>
<string>myApp.icns</string>
@To your Info.plist
And put the myApp.icns in your bundle Contents/Resources folder
-
In your pro file:
@
ICON = myApp.icns
QMAKE_INFO_PLIST = Info.plist@ -
Personally, I rebuild the application whenever I make changes to one of it's component so as to say it's mandatory for the icon to be updated, I don't know (there might be some caching done under the hood).
I don't get your last message.
-
You're welcome !
Don't forget to update the thread's title appending solved so other forum users may know a solution has been found :)