fix corner case with edje - where u check for existens of parts in a edje but
[edje_lua.git] / README
blob839bbcb7da745e23be1f88f58f6d436270ffdfd2
1 Edje 0.5.0
3 Requirements:
4 -------------
6 Must:
7   libc libm eet ecore ecore-evas ecore-job ecore-file embryo evas
9 A graphical layout and animation library for animated resizable, compressed and
10 scalable themes.
12 It's current under development and isn't complete. See src/lib/edje_private.h
13 for a list of FIXME's to do. Hopefully it will be complete in a few weeks.
15 Quick start-up guide:
17 1. You need eet from the HEAD cvs branch (must be up-to-date)
19   cvs co e17/libs/eet
20   cd e17/libs/eet
21   ./autogen.sh
22   make
23   sudo make install
24   cd
26 2. You need evas from the HEAD branch built with eet loader support.
28   cvs co e17/libs/evas
29   cd e17/libs/evas
30   ./autogen.sh
31   make
32   sudo make install
33   cd
34   
35 3. You need ecore from the HEAD cvs branch
37   cvs co e17/libs/ecore
38   cd e17/libs/ecore
39   ./autogen.sh
40   make
41   sudo make install
42   cd
44 4. You need embryo from the HEAD cvs branch
46   cvs co e17/libs/embryo
47   cd e17/libs/embryo
48   ./autogen.sh
49   make
50   sudo make install
51   cd
53 5. You already have Edje. now build it:
55    ./autogen.sh
56    make
57    sudo make install
59 You now want to go test it out. first you'll need to make an Edje EET file.
60    
61    cd data
62    ./e_logo.sh
63    
64 Now you can view the Edje you just built:
65    
66    edje ./e_logo.edj
67    
68 You can view multiple files at once with the Edje test program:
69    
70    edje ./e_logo.edj ./e_logo.edj ./e_logo.edj
71    
72 to view the same one 3 times.
73    
74 You can read the source file that builds the Edje EET file by looking at:
76    data/src/e_logo.edc
78 Another test file is also there:
80    data/src/test.edc
81    
82 The test file doesn't build anything useful at the moment.