OMOTE/LVGL Simulator/LvglPlatform/lvgl/tests/makefile/test.c
2023-06-28 20:26:56 +02:00

10 lines
116 B
C

#if LV_BUILD_TEST
#include <stdio.h>
#include "lvgl/lvgl.h"
int main(void)
{
lv_init();
return 0;
}
#endif