Zum Inhalt springen

Hack-A-N900/Development Notes: Unterschied zwischen den Versionen

Cyphunk (Diskussion | Beiträge)
Keine Bearbeitungszusammenfassung
Cyphunk (Diskussion | Beiträge)
Keine Bearbeitungszusammenfassung
Zeile 1: Zeile 1:
= N900 Development Notes =
= N900 Development Notes =


Not meant as a public resources. Just cluttered notes that src, cyphunk are sharing with each other for remote collaboration on a project.
Not meant as a public resources. Just cluttered notes (meaning written in a hurry) that src, cyphunk are sharing with each other for remote collaboration on a project.


== SDK Types ==
== SDK Types ==
Zeile 14: Zeile 14:


==== In Scratchbox ====
==== In Scratchbox ====
To install TpSession using scratchbox you need to install TelepathyQt4 on your workstation (for emulator), apt-get install libtelepathy-qt4-dev, and you need to install the nokia closed source libs for your target (requires serial number). Then compile TpSession (git clone https://vcs.maemo.org/git/tpsession) for your workstation and/or target. Then you have to copy the lib to the root dir of your target and add the location to the INCLUDES of the .pro file for the project. (thread discussion[http://talk.maemo.org/showthread.php?t=56602])
To install TpSession using scratchbox you need to install TelepathyQt4 on your workstation (for emulator), apt-get install libtelepathy-qt4-dev, and you need to install the nokia closed source libs for your target (requires serial number). Then compile TpSession (git clone https://vcs.maemo.org/git/tpsession) for your workstation and/or target. Then you have to copy the lib to the root dir of your target and add the location to the INCLUDES of the .pro file for the project. (thread discussion[http://talk.maemo.org/showthread.php?t=56602]).  Command log for using lib on local emulator:
 
<nowiki>
sudo apt-get install libtelepathy-qt4-dev libsqlite3-dev
git clone https://vcs.maemo.org/git/tpsession
cd tpsession/tpsession-0.1/
find ./ -name Makefile -exec rm -f {} \;
qmake && make && make install
</nowiki>
 
Might need to edit the INCLUDES in projects .pro file. For using on a target you need to install the nokia closed source libs and recompile tpsession for the phone and then:
 
<nowiki>
cp tpsession/libtpsession.so*
</nowiki>
 


==== In MADDE? ====
==== In MADDE? ====