scons: Build libOpenVG.dll & libEGL.dll

But without creating liblibOpenVG or liblibEGL elsewhere.

Thanks Chia-I Wu for pointing this out.
This commit is contained in:
José Fonseca
2011-01-13 11:54:43 +00:00
parent 80f18876f6
commit 63528c4510
2 changed files with 7 additions and 1 deletions

View File

@@ -111,8 +111,11 @@ if env['drm']:
svga,
])
# libEGL.dll
env['SHLIBPREFIX'] = 'lib'
egl_gallium = env.SharedLibrary(
target ='libEGL',
target ='EGL',
source = sources,
)

View File

@@ -44,6 +44,9 @@ if env['platform'] != 'winddk':
env.Depends(vgapi_objects, vgapi_header)
# libOpenVG.dll
env['SHLIBPREFIX'] = 'lib'
openvg = env.SharedLibrary(
target = 'OpenVG',
source = vgapi_objects,