i965/gen8: Expose auxiliary mode resolver
[mesa.git] / SConstruct
index 0e10818ba17bd3e4b840b8b944f343f9f9f6d406..e2e49fcc6ca4aa93f75440517ed89f99cca6dab9 100644 (file)
@@ -80,13 +80,15 @@ env.Append(CPPPATH = [
        '#/src/gallium/winsys',
 ])
 
-if env['msvc']:
-    env.Append(CPPPATH = ['#include/c99'])
-
 # for debugging
 #print env.Dump()
 
 
+# Add a check target for running tests
+check = env.Alias('check')
+env.AlwaysBuild(check)
+
+
 #######################################################################
 # Invoke host SConscripts 
 # 
@@ -115,9 +117,6 @@ if env['crosscompile'] and not env['embedded']:
     host_env['hostonly'] = True
     assert host_env['crosscompile'] == False
 
-    if host_env['msvc']:
-        host_env.Append(CPPPATH = ['#include/c99'])
-
     target_env = env
     env = host_env
     Export('env')