freetype2/gen.c

15 lines
248 B
C
Raw Normal View History

2017-06-28 10:46:56 +02:00
// consolidate code into this file
#include "bitmap.h"
#include <dlfcn.h>
int main(int argc, char const *argv[])
{
if(argc != 5)
{
printf("Usage: %s <base ft.so dir> <test ft.so dir> <font dir> <char size>", argv[0]);
}
return 0;
}