summaryrefslogtreecommitdiff
path: root/flower
diff options
context:
space:
mode:
authorJohn Mandereau <john.mandereau@gmail.com>2009-01-05 03:32:44 +0100
committerJohn Mandereau <john.mandereau@gmail.com>2009-01-05 03:32:44 +0100
commit24cd9ffc8b5a4ea03a29414eb7ae038a2d568d45 (patch)
tree5372d4682054a2f3fea1549fd36f42fd075cd6a0 /flower
parent543171165412bc915d8ea1f308d070c74924b2f1 (diff)
Remove SCons traces because of unmaintained state
Diffstat (limited to 'flower')
-rw-r--r--flower/SConscript28
1 files changed, 0 insertions, 28 deletions
diff --git a/flower/SConscript b/flower/SConscript
deleted file mode 100644
index c7e0abd4a0..0000000000
--- a/flower/SConscript
+++ /dev/null
@@ -1,28 +0,0 @@
-# -*-python-*-
-
-name = 'flower'
-outdir = Dir ('.').path
-
-Import ('env', 'src_glob')
-sources = src_glob ('*.cc')
-
-e = env.Copy ()
-e.Append (CPPPATH = ['#/flower/include', outdir,])
-includes = src_glob ('include/*.hh')
-
-if 1: # ut
- def test_source (x):
- x.startswith ('test')
- test_sources = filter (lambda x: x.startswith ('test'), sources)
- sources = filter (lambda x: not x.startswith ('test'), sources)
- ee = e.Copy ()
- ee.Append (LIBS = [name, 'boost_unit_test_framework'])
- test = ee.Program ('test' + name, test_sources)
-
-if env['static']:
- e.Library (name, sources)
-if not env['static'] or env['shared']:
- e.SharedLibrary (name, sources)
-
-po = env.Command ('lilypond.po', sources + includes, env['pocommand'])
-env.Alias ('po-update', po)