mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-24 06:07:29 +01:00
Added flowcanvas 0.0.1 (unreleased).
git-svn-id: svn://localhost/trunk/ardour2@62 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
2634aaadc5
commit
dfbf777cea
15 changed files with 3886 additions and 0 deletions
45
libs/flowcanvas/SConscript
Normal file
45
libs/flowcanvas/SConscript
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
# -*- python -*-
|
||||
|
||||
import os
|
||||
import os.path
|
||||
import glob
|
||||
|
||||
Import('env final_prefix install_prefix libraries')
|
||||
|
||||
flowcanvas = env.Copy()
|
||||
flowcanvas.Merge ([
|
||||
libraries['sigc2'],
|
||||
libraries['gtk2'],
|
||||
libraries['glibmm2'],
|
||||
libraries['pangomm'],
|
||||
libraries['atkmm'],
|
||||
libraries['gdkmm2'],
|
||||
libraries['gtkmm2'],
|
||||
libraries['libgnomecanvas2'],
|
||||
libraries['libgnomecanvasmm']
|
||||
])
|
||||
|
||||
#
|
||||
# this defines the version number of libflowcanvas
|
||||
#
|
||||
|
||||
domain = 'libflowcanvas'
|
||||
|
||||
flowcanvas.Append(DOMAIN=domain,MAJOR=0,MINOR=8,MICRO=1)
|
||||
flowcanvas.Append(CXXFLAGS="-DPACKAGE=\\\"" + domain + "\\\"")
|
||||
|
||||
flowcanvas_files = Split("""
|
||||
src/Connection.cpp
|
||||
src/FlowCanvas.cpp
|
||||
src/Module.cpp
|
||||
src/Port.cpp
|
||||
""")
|
||||
|
||||
libflowcanvas = flowcanvas.StaticLibrary('flowcanvas', flowcanvas_files)
|
||||
|
||||
Default(libflowcanvas)
|
||||
|
||||
env.Alias('tarball', env.Distribute (env['DISTTREE'],
|
||||
[ 'SConscript'] +
|
||||
flowcanvas_files +
|
||||
glob.glob('flowcanvas/*.h')))
|
||||
Loading…
Add table
Add a link
Reference in a new issue