2006-03-10 20:47:34 +00:00
|
|
|
#!/usr/bin/python
|
|
|
|
|
Import ('env')
|
|
|
|
|
|
2010-02-01 18:39:41 +00:00
|
|
|
if env['OURPLATFORM'] == 'linuxcross':
|
|
|
|
|
source = 'linuxcrossblender.rcscons'
|
|
|
|
|
else:
|
|
|
|
|
source = 'winblender.rcscons'
|
2006-03-10 20:47:34 +00:00
|
|
|
|
2009-09-04 12:56:30 +00:00
|
|
|
env.BlenderRes('winresource', source, ['core'], priority=[95])
|