I am having a TON of trouble deploying an application for Linux on Qt. I know there are a ton of articles on it, but I just feel like everyone is out to get you more confused, and that's why I am here. I have tried a few things, as I will explain below.
First, I just Googled "deploy qt application linux" and ended up with this article that is suppose to make your life so much easier, which it doesn't. I downloaded that LSB SDK, and then tried running the install.sh, but of course ended up with an error:
error: could not find configuration
It is also clearly there, as there is a inst-config in the same directory, and if I view that install.sh script I see that that's what it checks:
if [ \! -e ./inst-config ]; then
echo "error: could not find configuration" >&2
exit 1
fi
I tried editing that path to the direct location, it got passed that error, but just led to more errors with it so I decided that wasn't the easiest way to go.
Next I went to Nokia directly, where I found this article. I read a little, and I saw it was asking if I wanted to build statically or dynamically. All I want is a working application the easiest way, so I figured that Shared Library is easiest because on Windows all I need to do is open Dependency Walker and drag a few DLLs with the application. Of course, this wasn't the case.
One thing that has annoyed me most, is throughout the tutorial it refrences:
path/to/qt
Where I cannot seem to find correctly. I found this path:
/usr/share/qt4
But it obviously wasn't correct, as it doesn't even have an 'examples' folder, as the tutorial says to use "plugandpaint" which is located in there.
I am a very, very new user to Linux, and I am on the latest version of Ubuntu. I don't know much about Linux, and I guess that's why I am here, even though it seems that deploying applications on Qt are just impossible. Thanks.