mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-23 23:17:46 +01:00
Add missing cairomm lib from previous commit.
git-svn-id: svn://localhost/ardour2/trunk@2631 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
61c990dfba
commit
d346adb1d9
48 changed files with 47527 additions and 0 deletions
33
libs/cairomm/SConscript
Normal file
33
libs/cairomm/SConscript
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
# -*- python -*-
|
||||
|
||||
import os
|
||||
import os.path
|
||||
import glob
|
||||
|
||||
cairomm_files = glob.glob('cairomm/*.cc')
|
||||
|
||||
Import('env libraries install_prefix')
|
||||
|
||||
cairomm = env.Copy()
|
||||
cairomm.Merge([libraries['cairo']])
|
||||
|
||||
cairomm.Append(CXXFLAGS='-DHAVE_CONFIG_H')
|
||||
|
||||
libcairomm = cairomm.SharedLibrary('cairomm', cairomm_files)
|
||||
|
||||
Default([libcairomm])
|
||||
|
||||
env.Alias('install', env.Install(os.path.join(install_prefix, env['LIBDIR'], 'ardour2'), libcairomm))
|
||||
|
||||
env.Alias('tarball', env.Distribute (env['DISTTREE'],
|
||||
[ 'SConscript',
|
||||
'cairomm/cairomm.h',
|
||||
'configure',
|
||||
'Makefile.in',
|
||||
'cairomm/cairomm-1.0.pc.in',
|
||||
'cairomm/Makefile.in'
|
||||
] +
|
||||
cairomm_files +
|
||||
glob.glob('cairomm/*.h')
|
||||
))
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue