* bring back 'player' libtype, after investigation with ideasman. scons/mingw works nicely, for some reason msvc fails to link still, will look further into it.
		
			
				
	
	
		
			15 lines
		
	
	
		
			389 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			389 B
		
	
	
	
		
			Python
		
	
	
	
	
	
#!/usr/bin/python
 | 
						|
Import ('env')
 | 
						|
 | 
						|
sources = env.Glob('intern/*.c')
 | 
						|
 | 
						|
incs = '. #/intern/guardedalloc ../blenlib ../blenkernel'
 | 
						|
incs += ' ../makesdna ../readblenfile ../editors/include'
 | 
						|
incs += ' ../render/extern/include ../makesrna'
 | 
						|
 | 
						|
incs += ' ' + env['BF_ZLIB_INC']
 | 
						|
 | 
						|
defs = []
 | 
						|
 | 
						|
env.BlenderLib ( 'bf_blenloader', sources, Split(incs), defs, libtype=['core','player'], priority = [167,30] )
 |