]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/SConscript
lekker hakken
[lilypond.git] / flower / SConscript
diff --git a/flower/SConscript b/flower/SConscript
new file mode 100644 (file)
index 0000000..54ad4dc
--- /dev/null
@@ -0,0 +1,16 @@
+# -*-python-*-
+
+import glob
+sources = glob.glob ('*.cc')
+
+name = 'flower'
+
+Import ('env')
+##print `env.__dict__`
+
+e = env.Copy ()
+e.Append (CPPPATH = ['include'])
+if env['static']:
+       e.Library (name, sources) 
+if not env['static'] or ['shared']:
+       e.SharedLibrary (name, sources)