]> de.git.xonotic.org Git - xonotic/netradiant.git/blobdiff - SConscript.module
Adding patch_seam q3map2 regression test. Probably not fixable, but good to
[xonotic/netradiant.git] / SConscript.module
index a7f254970dc45fdacb39923219c7db362510c4f7..9de1947184f847adc63a6b9caf7afebbd5f9f936 100644 (file)
@@ -11,39 +11,43 @@ Import( [ 'utils', 'config', 'settings', 'project', 'shlib_objects' ] )
 libname = os.path.splitext( libname )[0]
 
 env = Environment()
-useJPEG = False
-useGtk = False
-useZ = False
-usePNG = False
-if ( libname == 'image' ):
-       useJPEG = True
-if ( libname == 'surface' ):
-       useGtk = True
-if ( libname == 'surface_ufoai' ):
-       useGtk = True
-if ( libname == 'surface_quake2' ):
-       useGtk = True
-if ( libname == 'surface_heretic2' ):
-       useGtk = True
-if ( libname == 'bkgrnd2d' ):
-       useGtk = True
-if ( libname == 'gtkgensurf' ):
-       useGtk = True
-if ( libname == 'bobToolz_gtk' ):
-       useGtk = True
-if ( libname == 'camera' ):
-       useGtk = True
-if ( libname == 'PrtView' ):
-       useGtk = True
-if ( libname == 'spritemodel' ):
-       useGtk = True
-if ( libname == 'model' ):
-       useGtk = True
-if ( libname == 'TexTool' ):
-       useGtk = True
-if ( libname == 'imagepng' ):
-       usePNG = True
+useJPEG = False
+useGtk = False
+useZ = False
+usePNG = False
+if ( libname == 'image' ):
+#      useJPEG = True
+if ( libname == 'surface' ):
+#      useGtk = True
+if ( libname == 'surface_ufoai' ):
+#      useGtk = True
+if ( libname == 'surface_quake2' ):
+#      useGtk = True
+if ( libname == 'surface_heretic2' ):
+#      useGtk = True
+if ( libname == 'bkgrnd2d' ):
+#      useGtk = True
+if ( libname == 'gtkgensurf' ):
+#      useGtk = True
+# if ( libname == 'bobtoolz' ):
+#      useGtk = True
+if ( libname == 'camera' ):
+#      useGtk = True
+# if ( libname == 'prtview' ):
+#      useGtk = True
+if ( libname == 'spritemodel' ):
+#      useGtk = True
+if ( libname == 'model' ):
+#      useGtk = True
+# if ( libname == 'textool' ):
+#      useGtk = True
+if ( libname == 'imagepng' ):
+#      usePNG = True
 
+useJPEG = True
+useGtk = True
+useZ = True
+usePNG = True
 
 settings.SetupEnvironment( env, config['name'], useGtk = useGtk, useJPEG = useJPEG, useZ = useZ, usePNG = usePNG )
 proj = utils.vcproj( os.path.join( GetLaunchDir(), project ) )