mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-07 06:05:43 +01:00
Merged with trunk R1141
git-svn-id: svn://localhost/ardour2/branches/midi@1142 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
af105afe6c
commit
ef6b25432d
209 changed files with 21004 additions and 6768 deletions
23
libs/clearlooks/SConscript
Normal file
23
libs/clearlooks/SConscript
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
import os.path
|
||||
|
||||
Import ('env install_prefix')
|
||||
|
||||
clearlooks = env.Copy()
|
||||
|
||||
clearlooks.Replace(CCFLAGS = ' `pkg-config --cflags gtk+-2.0` ',
|
||||
LINKFLAGS = ' `pkg-config --libs gtk+-2.0` ')
|
||||
|
||||
libclearlooks = clearlooks.SharedLibrary('clearlooks', [
|
||||
'clearlooks_draw.c',
|
||||
'clearlooks_rc_style.c',
|
||||
'clearlooks_style.c',
|
||||
'clearlooks_theme_main.c',
|
||||
'support.c'
|
||||
])
|
||||
|
||||
usable_libclearlooks = clearlooks.Install ('engines', libclearlooks)
|
||||
Default (usable_libclearlooks)
|
||||
|
||||
env.Alias('install',
|
||||
env.Install(os.path.join(install_prefix,'lib/ardour2/engines'),
|
||||
libclearlooks))
|
||||
Loading…
Add table
Add a link
Reference in a new issue