summaryrefslogtreecommitdiff
path: root/src/gallium/state_trackers/wgl/SConscript
blob: c72f495735d8d2a0dc7b600e7c85017094c05ed4 (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
34
35
36
37
38
39
40
41
42
43
import os

Import('*')

if env['platform'] in ['windows']:
     
    env = env.Clone()
     
    env.Append(CPPPATH = [
    	'#src/mesa',
    	'.',
    ])
     
    env.Append(CPPDEFINES = [
        '_GDI32_', # prevent wgl* being declared __declspec(dllimport)
        'BUILD_GL32', # declare gl* as __declspec(dllexport) in Mesa headers 
        '__GL_EXPORTS',
        '_GNU_H_WINDOWS32_DEFINES',
    ])
     
    sources = [
        'stw.c',

        'icd/stw_icd.c',

        'wgl/stw_wgl.c',

        'shared/stw_context.c',
        'shared/stw_device.c',
        'shared/stw_framebuffer.c',
        'shared/stw_pixelformat.c',
        'shared/stw_quirks.c',
        'shared/stw_arbextensionsstring.c',
        'shared/stw_getprocaddress.c',
        'shared/stw_arbpixelformat.c',
    ]

    wgl = env.ConvenienceLibrary(
        target ='wgl',
        source = sources,
    )
    
    Export('wgl')