3 * ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or (at your option) any later version. The Blender
9 * Foundation also sells licenses for use in proprietary software under
10 * the Blender License. See http://www.blender.org/BL/ for information
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software Foundation,
20 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 * The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
23 * All rights reserved.
25 * The Original Code is: all of this file.
27 * Contributor(s): none yet.
29 * ***** END GPL/BL DUAL LICENSE BLOCK *****
35 * Copyright (C) 2001 NaN Technologies B.V.
36 * Allows you to determine which fonts to include in the library.
39 #ifndef __BMF_SETTINGS_H
40 #define __BMF_SETTINGS_H
42 /* This font is included always */
43 #define BMF_INCLUDE_HELV10 1
47 /* These fonts are included with the minimal setting defined */
48 #define BMF_INCLUDE_HELV12 1
49 #define BMF_INCLUDE_HELVB8 1
50 #define BMF_INCLUDE_HELVB10 1
51 #define BMF_INCLUDE_HELVB12 1
52 #define BMF_INCLUDE_HELVB14 1
53 #define BMF_INCLUDE_SCR12 1
54 #define BMF_INCLUDE_SCR14 1
55 #define BMF_INCLUDE_SCR15 1
57 #else /* BMF_MINIMAL */
58 #define BMF_INCLUDE_HELV12 0
59 #define BMF_INCLUDE_HELVB8 0
60 #define BMF_INCLUDE_HELVB10 0
61 #define BMF_INCLUDE_HELVB12 0
62 #define BMF_INCLUDE_HELVB14 0
63 #define BMF_INCLUDE_SCR12 0
64 #define BMF_INCLUDE_SCR14 0
65 #define BMF_INCLUDE_SCR15 0
67 #endif /* BMF_MINIMAL */
69 #endif /* __BMF_SETTINGS_H */