public
Description: A Clutter-based Twitter client
Homepage: http://live.gnome.org/Tweet
Clone URL: git://github.com/ebassi/tweet.git
Search Repo:
Build the UI as a static library

This should make it easier to swap out parts of the implementation,
or even reuse part of it outside of Tweet.
Emmanuele Bassi (author)
Thu Apr 17 21:47:32 -0700 2008
commit  b45aeaed039e8d12419033a3884a02dc0ca4a8b9
tree    b7ef36f06fb5139a88c9b6f8cafc93b820ce26bf
parent  b7a26fb5bc22aa4b214b5fd0fd5ad6e7317f6796
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
0
@@ -1 +1,49 @@
0
+NULL =
0
+
0
+INCLUDES = \
0
+ -DPREFIX=\""$(prefix)"\" \
0
+ -DLIBDIR=\""$(libdir)"\" \
0
+ -DDATADIR=\""$(datadir)"\" \
0
+ -DPKGDATADIR=\""$(datadir)/tweet"\" \
0
+ -DUIDATADIR=\""$(datadir)/gnome-2.0/ui"\" \
0
+ -DGNOMELOCALEDIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \
0
+ $(NULL)
0
+
0
+common_cflags = \
0
+ -I$(top_srcdir) \
0
+ -I$(top_srcdir)/twitter-glib \
0
+ $(TWEET_CFLAGS)
0
+ $(NULL)
0
+
0
+common_ldadd = \
0
+ $(top_builddir)/twitter-glib/libtwitter-glib-1.0.la \
0
+ $(TWEET_LIBS) \
0
+ $(NULL)
0
+
0
+
0
+noinst_LTLIBRARIES = libtweet-ui.la
0
+bin_PROGRAMS = tweet
0
+
0
+libtweet_ui_la_SOURCES = \
0
+ tweet-app.c \
0
+ tweet-app.h \
0
+ tweet-config.c \
0
+ tweet-config.h \
0
+ tweet-status-column.c \
0
+ tweet-status-column.h \
0
+ tweet-status-model.c \
0
+ tweet-status-model.h \
0
+ tweet-status-renderer.c \
0
+ tweet-status-renderer.h \
0
+ tweet-status-view.c \
0
+ tweet-status-view.h \
0
+ tweet-window.c \
0
+ tweet-window.h \
0
+ $(NULL)
0
+libtweet_ui_la_CFLAGS = $(common_cflags)
0
+libtweet_ui_la_LIBADD = $(common_ldadd)
0
+
0
+tweet_SOURCES = tweet-main.c
0
+tweet_CFLAGS = $(common_cflags)
0
+tweet_LDADD = $(common_ldadd) libtweet-ui.la

Comments

    No one has commented yet.