Thread: Packaging qt
View Single Post
shep's Avatar
Posts: 85 | Thanked: 65 times | Joined on Jan 2010 @ Ireland
#13
Originally Posted by Figa View Post
Thank you but I need to save different files. I cant do this. I have in source code this line:
fopen(file.file, "w") and What have to be in src.pro ? I have one problem with building abou dg_shlibdebs else its ok.
The files should be stored here if only the app will access them
Code:
/home/usr/.myapp
If you want them accessible via the mass storage mode then use
Code:
/home/user/MyDocs/.appName/
I think your src.pro file needs to have them added in the installs section. Something like this (untested):
Code:
TARGET = fsudoku
TEMPLATE = app
SOURCES += main.cpp \
    window.cpp \
    sudoku.cpp
HEADERS += window.h \
    perm.h \
    sudoku.hpp
PREFIX = ../debian/fsudoku/usr
unix { 
    BINDIR = $$PREFIX/bin
    DATADIR = $$PREFIX/share
    DEFINES += DATADIR=\"$$DATADIR\" \
        PKGDATADIR=\"$$PKGDATADIR\"
    
    # MAKE INSTALL
    INSTALLS += target \
        desktop \
        icon64 \
        appfiles
    target.path = $$BINDIR
    desktop.path = $$DATADIR/applications/hildon
    desktop.files += fsudoku.desktop
    icon64.path = $$DATADIR/icons/hicolor/64x64/apps
    icon64.files += fsudoku.png
	
    appfiles.path = /home/usr/.myapp
    appfiles.files += save.txt \
    candidates.txt
}
Sorry, I don't know how to fix your package dependency problem.

Shep
__________________
- Hey! I also do other stuff Touchscreen apps for Windows and Android
- Currently developing a Diet Assistant/Weight Tracker for the N900