summaryrefslogtreecommitdiff
path: root/src/gallium/state_trackers/wgl/SConscript
blob: 352c087475eb89841d7fabcd658c087e973601ab (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
import os

Import('*')

if env['platform'] in ['windows']:
     
    env = env.Clone()
     
    env.Append(CPPPATH = [
    	'#src/mesa',
    	'.',
    ])
     
    env.AppendUnique(CPPDEFINES = [
        '_GDI32_', # prevent wgl* being declared __declspec(dllimport)
        'BUILD_GL32', # declare gl* as __declspec(dllexport) in Mesa headers 
        'WIN32_THREADS', # use Win32 thread API
        'WIN32_LEAN_AND_MEAN', # http://msdn2.microsoft.com/en-us/library/6dwk3a1z.aspx
    ])
     
    sources = [
        'stw_context.c',
        'stw_device.c',
        'stw_ext_extensionsstring.c',
        'stw_ext_gallium.c',
        'stw_ext_pixelformat.c',
        'stw_ext_swapinterval.c',
        'stw_framebuffer.c',
        'stw_getprocaddress.c',
        'stw_pixelformat.c',
        'stw_tls.c',
        'stw_wgl.c',
    ]

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