OMOTE/LVGL Simulator/LvglPlatform/lvgl/tests/makefile/test.c

11 lines
116 B
C
Raw Normal View History

2023-06-28 14:26:56 -04:00
#if LV_BUILD_TEST
#include <stdio.h>
#include "lvgl/lvgl.h"
int main(void)
{
lv_init();
return 0;
}
#endif