summaryrefslogtreecommitdiff
path: root/src/glsl/apps/SConscript
blob: d68e6b23b35f5b25661773380afd630caef5aa8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Import('*')

if env['platform'] not in ['windows']:
    Return()

env = env.Clone()

if env['platform'] == 'windows':
    env.PrependUnique(LIBS = [
        'user32',
    ])

env.Prepend(LIBS = [glsl])

env.Program(
    target = 'purify',
    source = ['purify.c'],
)