view tests/core_tests/SConscript @ 620:853d25234671

* Moved the GLEnable and GLDisable structures from opengl_gui_graphics.cpp to fife_opengl.h as they may prove to be useful elsewhere. * Fixed the color mask definitions in fife_stdint.h * Added the nextPow2() function to calculate the nearest (greater) power of 2 * Removed a bunch of re-definitions of RGB masks * Modified GLImage to only generate one "texture chunk". I hope this makes better use of memory and speeds things up a hair * Made use of the GLEnable structure when clearing the screen
author prock@33b003aa-7bff-0310-803a-e67f0ece8222
date Thu, 30 Sep 2010 21:24:55 +0000
parents 64738befdf3b
children
line wrap: on
line source

import os,sys
from utils.util_scripts.path import path as upath

Import('env', 'opts')

if env.has_key('LIBS'):
	libs = list(env['LIBS'])
	libs.append(opts['TESTLIBS'])
else:
	libs = ""

if env.has_key('LIBPATH'):
	lib_path = list(env['LIBPATH'])
	lib_path.append(opts['LIBPATH'])
else:
	lib_path = ""

source_path = opts['SRC']

if env.has_key('CPPPATH'):
	core_path = list(env['CPPPATH'])
	core_path.append(os.path.join(source_path, 'core'))
else:
	core_path = ""

Alias('test_dat1', 
      env.Program('test_dat1', 
                  'test_dat1.cpp', 
		  CPPPATH=core_path, 
		  LIBS=libs, 
		  LIBPATH=lib_path))

Alias('test_dat2', 
      env.Program('test_dat2', 
                  'test_dat2.cpp', 
		  CPPPATH=core_path, 
		  LIBS=libs, 
		  LIBPATH=lib_path))

Alias('test_gui', 
      env.Program('test_gui', 
                  'test_gui.cpp', 
		  CPPPATH=core_path, 
		  LIBS=libs, 
		  LIBPATH=lib_path))

Alias('test_imagepool', 
      env.Program('test_imagepool', 
                  'test_imagepool.cpp', 
		  CPPPATH=core_path, 
		  LIBS=libs, 
		  LIBPATH=lib_path))

Alias('test_images', 
      env.Program('test_images', 
                  'test_images.cpp', 
		  CPPPATH=core_path, 
		  LIBS=libs, 
		  LIBPATH=lib_path))

Alias('test_rect', 
      env.Program('test_rect', 
                  'test_rect.cpp', 
		  CPPPATH=core_path, 
		  LIBS=libs, 
		  LIBPATH=lib_path))

Alias('test_vgs', 
      env.Program('test_vfs', 
                  'test_vfs.cpp', 
		  CPPPATH=core_path, 
		  LIBS=libs, 
		  LIBPATH=lib_path))

Alias('test_zip', 
      env.Program('test_zip', 
                  'test_zip.cpp', 
		  CPPPATH=core_path, 
		  LIBS=libs, 
		  LIBPATH=lib_path))

Alias('tests', ['test_dat1','test_dat2','test_gui','test_imagepool','test_images','test_rect','test_vfs','test_zip'])