comparison tools/fontconv.c @ 1272:acae5f8ebc67

Fix build process.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 19 May 2016 12:08:16 +0300
parents 5b8245e5f785
children 370c40e0847f
comparison
equal deleted inserted replaced
1271:197c9ccdb33c 1272:acae5f8ebc67
25 { 25 {
26 { 0, '?', "help", "Show this help", OPT_NONE }, 26 { 0, '?', "help", "Show this help", OPT_NONE },
27 { 1, 'v', "verbose", "Be more verbose", OPT_NONE }, 27 { 1, 'v', "verbose", "Be more verbose", OPT_NONE },
28 { 2, 'o', "output", "Set output filename", OPT_ARGREQ }, 28 { 2, 'o', "output", "Set output filename", OPT_ARGREQ },
29 { 3, 's', "size", "Set glyph dimensions (-s W:H) for image->font conversion", OPT_ARGREQ }, 29 { 3, 's', "size", "Set glyph dimensions (-s W:H) for image->font conversion", OPT_ARGREQ },
30 #ifdef DM_GFX_TTF_TEXT
30 { 4, 'c', "color", "TTF font rendering color (def: 0xFFFFFF)", OPT_ARGREQ }, 31 { 4, 'c', "color", "TTF font rendering color (def: 0xFFFFFF)", OPT_ARGREQ },
32 #endif
31 }; 33 };
32 34
33 const int optListN = sizeof(optList) / sizeof(optList[0]); 35 const int optListN = sizeof(optList) / sizeof(optList[0]);
34 36
35 37