Sasler
|
2010-01-05
, 06:53
|
Posts: 434 |
Thanked: 325 times |
Joined on Sep 2009
|
#21
|
|
2010-01-05
, 08:51
|
Posts: 432 |
Thanked: 645 times |
Joined on Mar 2009
|
#22
|
Unfortunately there are instructions that seem to apply only to ScratchBox. I'm trying to use Windows only without a virtual Linux box. But I'm starting to wonder if this is even possible yet.
|
2010-01-05
, 10:03
|
Posts: 434 |
Thanked: 325 times |
Joined on Sep 2009
|
#23
|
Hi,
do you have your latest sources anywhere, that I could have a look, what's going wrong?!?
You are using MADDE right?!? Sure it is possible. Maybe I should add a more complex example to the wiki there.
The Following User Says Thank You to Sasler For This Useful Post: | ||
|
2010-01-05
, 11:18
|
Posts: 31 |
Thanked: 18 times |
Joined on Oct 2009
@ Helsinki
|
#24
|
The Following User Says Thank You to juxxxer For This Useful Post: | ||
|
2010-01-05
, 13:09
|
Posts: 434 |
Thanked: 325 times |
Joined on Sep 2009
|
#25
|
Hi,
New 64x64 version (sorry my way of working is quite iterative) - but some colors added (+ transparency for 64x64). Opinions? comments? I think it would be nice to see those in action in N900 when you are getting there.
|
2010-01-06
, 06:35
|
Posts: 434 |
Thanked: 325 times |
Joined on Sep 2009
|
#26
|
install: $(TARGET) -$(INSTALL_PROGRAM) $(TARGET) "$(DESTDIR)"/usr/bin/$(QMAKE_TARGET)
|
2010-01-06
, 13:56
|
Posts: 434 |
Thanked: 325 times |
Joined on Sep 2009
|
#27
|
|
2010-01-07
, 11:02
|
Posts: 432 |
Thanked: 645 times |
Joined on Mar 2009
|
#28
|
I got a strange new problem. After I install the Debian package, it looks like this and I get these errors. But when I reboot my device, it looks normal and I get no errors. Any idea why it's doing this?
TEMPLATE = subdirs SUBDIRS = src
TARGET = countdowntimer TEMPLATE = app SOURCES += qtmain.cpp \ settings.cpp \ form.cpp HEADERS += settings.h \ form.h FORMS += settings.ui \ form.ui PREFIX = ../debian/countdowntimer/usr unix { BINDIR = $$PREFIX/bin DATADIR =$$PREFIX/share DEFINES += DATADIR=\"$$DATADIR\" PKGDATADIR=\"$$PKGDATADIR\" #MAKE INSTALL INSTALLS += target desktop target.path =$$BINDIR desktop.path = $$DATADIR/applications/hildon desktop.files += countdowntimer.desktop }
mad dh_make --createorig --single -e <your email> -c gpl
mad qmake
mad dpkg-buildpackage
|
2010-01-07
, 14:07
|
Posts: 434 |
Thanked: 325 times |
Joined on Sep 2009
|
#29
|
QT += phonon TARGET = countdowntimer TEMPLATE = app SOURCES += qtmain.cpp \ settings.cpp \ form.cpp HEADERS += settings.h \ form.h FORMS += settings.ui \ form.ui PREFIX = ../debian/countdowntimer/usr unix { BINDIR = $$PREFIX/bin DATADIR =$$PREFIX/share DEFINES += DATADIR=\"$$DATADIR\" PKGDATADIR=\"$$PKGDATADIR\" #MAKE INSTALL INSTALLS += target desktop target.path =$$BINDIR desktop.path = $$DATADIR/applications/hildon desktop.files += countdowntimer.desktop icon64.path = $$DATADIR/icons/hicolor/64x64/apps icon64.files += ../data/64x64/$${TARGET}.png }
|
2010-01-07
, 14:44
|
Posts: 432 |
Thanked: 645 times |
Joined on Mar 2009
|
#30
|
I got the countdowntimer.png in <app root>\data\64x64\ directory. But I only get the default blue icon.
INSTALLS += target desktop icon64 target.path =$$BINDIR desktop.path = $$DATADIR/applications/hildon desktop.files += countdowntimer.desktop icon64.path = $$DATADIR/icons/hicolor/64x64/apps icon64.files += ../data/64x64/countdowntimer.png
The Following User Says Thank You to danielwilms For This Useful Post: | ||