Hello everyone!

I've encountered a problem, regarding the QtCreator remote compiler.
I'm still new, so please bear with me I will try to describe the problem as detail as possible.

I am using QtCreator 2.2.0 based on Qt 4.7.4 on Windows platform.

I have this 'test' project that reads a single .txt file, and outputs it to screen.
this project is compiled through the Remote Compiler, for MeeGo 1.2 Harmattan target.

oh btw, I don't use QResource because in my real project I need the file to be editable on runtime.

I've added the following to my .pro file (the test project one) :
Qt Code:
  1. unix {
  2. dir1.files = files/*
  3.   dir1.path = /opt/$${TARGET}
  4.   INSTALLS += dir1
  5. } else {
  6.   dir1.source += files/*
  7.   DEPLOYMENTFOLDERS = dir1
  8. }
To copy to clipboard, switch view to plain text mode 
(before adding this code I was facing some problem about a failed build on Remote Compiler,
and I've done some search and that's the solution I got. )

I have already tested it on Qt Simulator and it runs perfectly,
Remote Compiler also gave me the .deb file.
However, when I installed my app on the device ( via Nokia RDA, N9 model ) the deploymentfolders was not found.
I have checked the installation directory, and I cannot find the extra files I want.
I assumed that my deploymentfolders was not included in the package

Also, the .rar files that QtCreator created to be uploaded to the Remote Compiler doesn't seem to have the deploymentfolders
that I wanted inside.

Did I missed some steps ?

Any help is appreciated!

Thank you so much!