I wish to unzip files in my nokia QT application. I looked at the following wiki page - http://wiki.forum.nokia.com/index.ph..._read_ZIP_file . I copied the methods from the wiki into my QT application code and then ran the application on my phone, it worked fine! But the problems is that compile for QT simulator fails.
I have included the following 4 symbian libraries in my .pro file -
LIBS += -LC:\NokiaQtSDK\Symbian\SDK\epoc32\release\armv5\lib -lezip
LIBS += -LC:\NokiaQtSDK\Symbian\SDK\epoc32\release\armv5\lib -lbafl
LIBS += -LC:\NokiaQtSDK\Symbian\SDK\epoc32\release\armv5\lib -lefsrv
LIBS += -LC:\NokiaQtSDK\Symbian\SDK\epoc32\release\armv5\lib -leuser
I think the compile fails because I haven't included a simulator version for these 4 libraries. I get compile errors like -
Zip.h No such file file or directory
ZipFileMember.h: No such file or directory
.....
Can someone please suggest a fix or an alternative solution.




