mirror of
https://github.com/lvgl/lvgl.git
synced 2025-01-14 06:42:58 +08:00
17 lines
187 B
C
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
|
|
|