LEFT | RIGHT |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # | 2 # |
3 # ***** BEGIN GPL LICENSE BLOCK ***** | 3 # ***** BEGIN GPL LICENSE BLOCK ***** |
4 # | 4 # |
5 # This program is free software; you can redistribute it and/or | 5 # This program is free software; you can redistribute it and/or |
6 # modify it under the terms of the GNU General Public License | 6 # modify it under the terms of the GNU General Public License |
7 # as published by the Free Software Foundation; either version 2 | 7 # as published by the Free Software Foundation; either version 2 |
8 # of the License, or (at your option) any later version. | 8 # of the License, or (at your option) any later version. |
9 # | 9 # |
10 # This program is distributed in the hope that it will be useful, | 10 # This program is distributed in the hope that it will be useful, |
(...skipping 26 matching lines...) Expand all Loading... |
37 | 37 |
38 defs = ['GLEW_STATIC'] | 38 defs = ['GLEW_STATIC'] |
39 | 39 |
40 if sys.platform == 'win32' or env['OURPLATFORM'] == 'linuxcross': | 40 if sys.platform == 'win32' or env['OURPLATFORM'] == 'linuxcross': |
41 defs.append('_WIN32') | 41 defs.append('_WIN32') |
42 | 42 |
43 if env['WITH_BF_INTERNATIONAL']: | 43 if env['WITH_BF_INTERNATIONAL']: |
44 defs.append('WITH_INTERNATIONAL') | 44 defs.append('WITH_INTERNATIONAL') |
45 | 45 |
46 env.BlenderLib ( 'bf_blenfont', sources, Split(incs), Split(defs), libtype=['cor
e','player'], priority=[210,210] ) | 46 env.BlenderLib ( 'bf_blenfont', sources, Split(incs), Split(defs), libtype=['cor
e','player'], priority=[210,210] ) |
LEFT | RIGHT |