使用Visual Studio打开LVGL V9的模拟工程,想添加自己生成的中文字库文件:lv_font_SourceHanSans_28.c
在解决方案资源管理器中,有四个项目,通过在 LvglWindowsSimulator 中新建一个筛选器并将该字库文件添加到工程中
添加用户代码后(该代码在CodeBlocks测试没问题)
extern const lv_font_t lv_font_SourceHanSans_28;
void user_demo(void)
{
lv_obj_t* pLabel = lv_label_create(lv_screen_active());
lv_obj_set_size(pLabel, LV_SIZE_CONTENT, LV_SIZE_CONTENT);
lv_obj_set_style_text_font(pLabel, &lv_font_SourceHanSans_28, LV_PART_MAIN);
lv_label_set_text(pLabel, "中文测试");
}
编译提示错误:
LNK2001 无法解析的外部符号 struct _lv_font_t const lv_font_SourceHanSans_28 (?lv_font_SourceHanSans_28@@3U_lv_font_t@@B)
请教在 V9 版本在 Visual Stuidio 中如何添加用户自定义的字库文件,是需要设置哪里吗?