David Robillard
227eca4054
git-svn-id: svn://localhost/ardour2/branches/3.0@4622 d708f5d6-7413-0410-9779-e7cbd77b26cf
37 lines
1.0 KiB
Python
37 lines
1.0 KiB
Python
# -*- python -*-
|
|
|
|
import os.path
|
|
import glob
|
|
|
|
libclearlooks_files = [
|
|
'clearlooks_draw.c',
|
|
'clearlooks_rc_style.c',
|
|
'clearlooks_style.c',
|
|
'clearlooks_theme_main.c',
|
|
'support.c' ]
|
|
|
|
Import ('env install_prefix')
|
|
|
|
clearlooks = env.Clone()
|
|
|
|
clearlooks.Replace(CCFLAGS = ' `pkg-config --cflags gtk+-2.0` ',
|
|
LINKFLAGS = ' `pkg-config --libs gtk+-2.0` ')
|
|
|
|
if env['GTKOSX']:
|
|
clearlooks.Append (CCFLAGS = '-DGTKOSX')
|
|
|
|
libclearlooks = clearlooks.SharedLibrary('clearlooks', libclearlooks_files)
|
|
|
|
usable_libclearlooks = clearlooks.Install ('engines', libclearlooks)
|
|
Default (usable_libclearlooks)
|
|
|
|
env.Alias('install',
|
|
env.Install(os.path.join(install_prefix,env['LIBDIR'], 'ardour3', 'engines'),
|
|
libclearlooks))
|
|
|
|
env.Alias('tarball', env.Distribute (env['DISTTREE'],
|
|
[ 'SConscript', 'bits.c'] +
|
|
libclearlooks_files +
|
|
glob.glob('*.h')
|
|
))
|