1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-14 06:42:58 +08:00
lvgl/tests/test_main.c
2019-12-26 02:49:30 +01:00

17 lines
187 B
C

#include "../lvgl.h"
#include <stdio.h>
#if LV_BUILD_TEST
int main(void)
{
printf("Call lv_init...\n");
lv_init();
printf("Exit with success!\n");
return 0;
}
#endif