Skip to content

Commit adcfc7e

Browse files
author
Rob Staudinger
committed
object-store: Initial import
1 parent 884ac0e commit adcfc7e

File tree

9 files changed

+1287
-0
lines changed

9 files changed

+1287
-0
lines changed

README

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ circles - A small spinning circles demo (using the cogl path API)
77
courasel - A carousel-style menu demo
88
foofone - A mock-up mobile phone interface
99
gps-globe - The start of an app to draw a globe with your GPS pos
10+
object-store - A ClutterModel subclass that proxies GObjects
1011
opt - A slide-show application
1112
odo - A mesh deformation demo set
1213
pinpoint - A minimalistic presentation tool

object-store/Makefile

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
2+
PROGRAM = object-store-test
3+
4+
SOURCES = \
5+
foo-object-store.c \
6+
foo-object-store.h \
7+
foo-test-object.c \
8+
foo-test-object.h \
9+
object-store-test.c \
10+
$(NULL)
11+
12+
PKGFLAGS = `pkg-config --cflags --libs clutter-1.0 mx-1.0`
13+
14+
all: $(PROGRAM)
15+
16+
clean:
17+
rm -f $(PROGRAM)
18+
19+
$(PROGRAM): $(SOURCES)
20+
$(CC) $(CPPLAGS) $(CFLAGS) $(PKGFLAGS) -o $@ $^
21+
22+
.PHONY: clean

object-store/foo-object-store-test

12.3 MB
Binary file not shown.

0 commit comments

Comments
 (0)