Mesa (master): mapi/vgapi: Add SConscript for Windows build.

Chia-I Wu olv at kemper.freedesktop.org
Mon May 31 05:28:55 UTC 2010


Module: Mesa
Branch: master
Commit: 60558b1594e864ce8d44f2fe910075f2e47a164f
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=60558b1594e864ce8d44f2fe910075f2e47a164f

Author: Chia-I Wu <olv at lunarg.com>
Date:   Mon May 31 12:37:23 2010 +0800

mapi/vgapi: Add SConscript for Windows build.

---

 src/SConscript            |    1 +
 src/mapi/vgapi/SConscript |   55 +++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 56 insertions(+), 0 deletions(-)

diff --git a/src/SConscript b/src/SConscript
index b8a0024..9eda35e 100644
--- a/src/SConscript
+++ b/src/SConscript
@@ -4,6 +4,7 @@ SConscript('glsl/SConscript')
 SConscript('mapi/glapi/SConscript')
 
 if 'egl' in env['statetrackers']:
+    SConscript('mapi/vgapi/SConscript')
     SConscript('egl/main/SConscript')
 
 if 'mesa' in env['statetrackers']:
diff --git a/src/mapi/vgapi/SConscript b/src/mapi/vgapi/SConscript
new file mode 100644
index 0000000..f000c61
--- /dev/null
+++ b/src/mapi/vgapi/SConscript
@@ -0,0 +1,55 @@
+#######################################################################
+# SConscript for vgapi
+
+from sys import executable as python_cmd
+
+Import('*')
+
+if env['platform'] != 'winddk':
+
+	env = env.Clone()
+
+	vgapi_header = env.CodeGenerate(
+		target = '#src/mapi/vgapi/vgapi_tmp.h',
+		script = '../mapi/mapi_abi.py',
+		source = 'vgapi.csv',
+		command = python_cmd + ' $SCRIPT -i vgapi/vgapi_defines.h $SOURCE > $TARGET'
+	)
+
+	env.Append(CPPDEFINES = [
+		'MAPI_ABI_HEADER=\\"vgapi/vgapi_tmp.h\\"',
+		'KHRONOS_DLL_EXPORTS',
+	])
+
+	env.Append(CPPPATH = [
+		'#/include',
+		'#/src/mapi',
+	])
+
+	mapi_sources = [
+		'entry.c',
+		'mapi.c',
+		'stub.c',
+		'table.c',
+		'u_current.c',
+		'u_execmem.c',
+		'u_thread.c',
+	]
+
+	vgapi_objects = []
+	for s in mapi_sources:
+		o = env.Object(s[:-2], '../mapi/' + s)
+		vgapi_objects.append(o)
+
+	env.Depends(vgapi_objects, vgapi_header)
+
+	openvg = env.SharedLibrary(
+		target = 'libOpenVG',
+		source = vgapi_objects,
+	)
+
+	env.InstallSharedLibrary(openvg, version=(1, 0, 0))
+
+	vgapi = [env.FindIxes(openvg, 'LIBPREFIX', 'LIBSUFFIX')]
+
+	Export(['vgapi', 'vgapi_header'])




More information about the mesa-commit mailing list