summaryrefslogtreecommitdiff
path: root/libs/clearlooks/SConscript
blob: fe8acf915f9ceb9b4db948b58315e96a3b7ed9a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# -*- 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.Copy()

clearlooks.Replace(CCFLAGS = ' `pkg-config --cflags gtk+-2.0` ',
                   LINKFLAGS = ' `pkg-config --libs gtk+-2.0` ')

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,'lib/ardour2/engines'),
                      libclearlooks))

env.Alias('tarball', env.Distribute (env['DISTTREE'],
                                     [ 'SConscript', 'bits.c'] +
                                    libclearlooks_files +
                                    glob.glob('*.h')
                                    ))