summaryrefslogtreecommitdiff
path: root/tests/test4/tuto-cairo/compil.sh
diff options
context:
space:
mode:
authorLudovic Pouzenc <ludovic@pouzenc.fr>2012-05-27 14:30:30 +0000
committerLudovic Pouzenc <ludovic@pouzenc.fr>2012-05-27 14:30:30 +0000
commit8992b23846bb1ceca32b18ddeac6fffcafc5216c (patch)
tree2ad30a451b54a30dce8d86365be18616a144f20e /tests/test4/tuto-cairo/compil.sh
parent50d600686c74fe2042d3d653427561b8832d5f70 (diff)
download2012-violon-leds-8992b23846bb1ceca32b18ddeac6fffcafc5216c.tar.gz
2012-violon-leds-8992b23846bb1ceca32b18ddeac6fffcafc5216c.tar.bz2
2012-violon-leds-8992b23846bb1ceca32b18ddeac6fffcafc5216c.zip
Reecriture du composant avec pixbug et Cairo pour economiser du CPU.
Reste à finir l'évènement expose (ne pas crée un cr à chaque coup + faire calcul coord vertical/horiz) git-svn-id: file:///var/svn/2012-violon-leds/trunk@6 6be1fa4d-33ac-4c33-becc-79fcb3794bb6
Diffstat (limited to 'tests/test4/tuto-cairo/compil.sh')
-rwxr-xr-xtests/test4/tuto-cairo/compil.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/test4/tuto-cairo/compil.sh b/tests/test4/tuto-cairo/compil.sh
new file mode 100755
index 0000000..f95aa68
--- /dev/null
+++ b/tests/test4/tuto-cairo/compil.sh
@@ -0,0 +1,5 @@
+#!/bin/bash -ex
+
+gcc -Wall -g -c gtkvumeter.c `pkg-config --cflags gtk+-2.0`
+gcc -Wall -g -c main.c `pkg-config --cflags gtk+-2.0`
+gcc -Wall -g -o test4 gtkvumeter.o main.o `pkg-config --libs gtk+-2.0`