source: trunk/Taper/src/README@ 7131

Last change on this file since 7131 was 4307, checked in by merck, 20 years ago
new project
File size: 1.6 KB
Line 
1-----------------------------------------------
2Kde application framework template quickstart
3Author: Thomas Nagy
4Date: 2003-06-20
5-----------------------------------------------
6
7This README file explains you how to use this application template.
8
9
10* To distribute your program, try "make dist".
11This will make a compact tarball archive of your release with the
12necessary scripts inside.
13
14* To clean everything try make distclean
15
16* To build the configure script try make -f Makefile.cvs
17
18* For the translations :
191. Download a patched gettext which can be found at:
20 http://public.kde.planetmirror.com/pub/kde/devel/gettext-kde/
212. Install that gettext in ~/bin/
223. cd ~/yourproject, export PATH=~/bin:$PATH, export
23KDEDIR=/where_your_KDE3_is
244. make -f admin/Makefile.common package-messages
255. make package-messages
266. Translate the po files (not the pot!!) with kbabel or xemacs
27
28
29* Build the menus of your application easily
30kde applications now use an xml file (*ui.rc file) to build the menus.
31This allow a great customization of the application. However, when
32programming the menu is shown only after a "make install"
33
34For more details, consult :
35http://devel-home.kde.org/~larrosa/tutorial/p9.html
36http://developer.kde.org/documentation/tutorials/xmlui/preface.html
37
38
39* Modifying the auto-tools scripts
40for automake scripts there is an excellent tutorial there :
41http://developer.kde.org/documentation/other/makefile_am_howto.html
42
43* Simplify your life : install the project in your home directory for
44testing purposes.
45./configure --prefix=/home/user/dummyfolder/
46In the end when you finished the development you can
47rm -rf /home/user/dummyfolder/
48without fear.
Note: See TracBrowser for help on using the repository browser.