SCons tool for DXSDK.
authorJosé Fonseca <jfonseca@vmware.com>
Sun, 27 Sep 2009 18:16:31 +0000 (19:16 +0100)
committerJosé Fonseca <jfonseca@vmware.com>
Sun, 27 Sep 2009 18:16:31 +0000 (19:16 +0100)
SConstruct
scons/dxsdk.py [new file with mode: 0644]

index 05ff800..07b729d 100644 (file)
@@ -1,6 +1,6 @@
 #############################################################################
 #
-# Copyright 2008 Tungsten Graphics, Inc.
+# Copyright 2008-2009 VMware, Inc.
 #
 # This program is free software: you can redistribute it and/or modify it
 # under the terms of the GNU Lesser General Public License as published
@@ -53,7 +53,6 @@ vars.Add(EnumVariable('machine', 'use machine-specific assembly code', default_m
                       allowed_values=('generic', 'ppc', 'x86', 'x86_64')))
 vars.Add(EnumVariable('toolchain', 'compiler toolchain', 'default',
                       allowed_values=('default', 'crossmingw', 'winsdk')))
-#vars.Add(PathVariable('dxsdk', 'DirectX SDK installation dir', os.environ.get('DXSDK_DIR', 'C:\\DXSDK')))
 vars.Add(EnumVariable('MSVS_VERSION', 'Microsoft Visual Studio version', None, allowed_values=('7.1', '8.0', '9.0')))
 
 env = Environment(
@@ -63,7 +62,7 @@ Help(vars.GenerateHelpText(env))
 
 Export(['env'])
 
-env.Tool(env['toolchain'], ['scons'])
+env.Tool(env['toolchain'], toolpath = ['scons'])
 
 env['gcc'] = 'gcc' in os.path.basename(env['CC']).split('-')
 env['msvc'] = env['CC'] == 'cl'
@@ -181,10 +180,7 @@ env.Prepend(LIBS = [
 
 SConscript('zlib/SConscript')
 
-try:
-    env.Append(CPPPATH = [os.path.join(os.environ['DXSDK'], 'Include'),]) 
-except KeyError:
-    pass
+env.Tool('dxsdk', toolpath = ['scons'])
 
 conf = Configure(env)
 has_d3d9 = conf.CheckCHeader('d3d9.h')
diff --git a/scons/dxsdk.py b/scons/dxsdk.py
new file mode 100644 (file)
index 0000000..920cc2f
--- /dev/null
@@ -0,0 +1,73 @@
+"""dxsdk
+
+Tool-specific initialization for Microsoft DirectX SDK
+
+"""
+
+#
+# Copyright (c) 2009 VMware, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining
+# a copy of this software and associated documentation files (the
+# "Software"), to deal in the Software without restriction, including
+# without limitation the rights to use, copy, modify, merge, publish,
+# distribute, sublicense, and/or sell copies of the Software, and to
+# permit persons to whom the Software is furnished to do so, subject to
+# the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
+# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
+# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+#
+
+import os
+import os.path
+
+import SCons.Errors
+import SCons.Util
+
+
+def get_dxsdk_root(env):
+    try:
+        return os.environ['DXSDK_DIR']
+    except KeyError:
+        return None
+
+def generate(env):
+    dxsdk_root = get_dxsdk_root(env)
+    if dxsdk_root is None:
+        # DirectX SDK not found
+        return
+
+    if env['machine'] in ('generic', 'x86'):
+        target_cpu = 'x86'
+    elif env['machine'] == 'x86_64':
+        target_cpu = 'x64'
+    else:
+        raise SCons.Errors.InternalError, "Unsupported target machine"
+
+    include_dir = os.path.join(dxsdk_root, 'Include')
+    lib_dir = os.path.join(dxsdk_root, 'Lib', target_cpu)
+
+    env.Append(CPPDEFINES = [('HAVE_DXSDK', '1')])
+
+    gcc = 'gcc' in os.path.basename(env['CC']).split('-')
+    if gcc:
+        # Make GCC more forgiving towards Microsoft's headers
+        env.Prepend(CPPFLAGS = ['-isystem', include_dir])
+    else:
+        env.Prepend(CPPPATH = [include_dir])
+
+    env.Prepend(LIBPATH = [lib_dir])
+
+def exists(env):
+    return get_dxsdk_root(env) is not None
+
+# vim:set ts=4 sw=4 et: