diff --git a/docs/get-started/cmake.md b/docs/get-started/cmake.md index 39d0cc66e..3030e4a28 100644 --- a/docs/get-started/cmake.md +++ b/docs/get-started/cmake.md @@ -47,12 +47,14 @@ This configuration declares a dependency between the two targets **MyFirmware** ### Additional CMake options Besides `LV_CONF_PATH` there are two additional CMake options to specify include paths. -`LV_LVGL_H_INCLUDE_SIMPLE` which specifies whether to `#include "lvgl.h"` absolut or relative +`LV_LVGL_H_INCLUDE_SIMPLE` which specifies whether to `#include "lvgl.h"` absolut or relative + | ON (default) | OFF | | ------------ | -------------- | | "lvgl.h" | "../../lvgl.h" | `LV_CONF_INCLUDE_SIMPLE` which specifies whether to `#include "lv_conf.h"` and `"lv_drv_conf.h"` absolut or relative + | ON (default) | OFF | | --------------- | --------------------- | | "lv_conf.h" | "../../lv_conf.h" | @@ -88,4 +90,4 @@ FetchContent_MakeAvailable(lv_demos) target_link_libraries(MyFirmware PRIVATE lvgl::lvgl lvgl::drivers lvgl::examples) ``` -Just like the [lv_conf.h](https://github.com/lvgl/lvgl/blob/master/lv_conf_template.h) header demos comes with its own config header called [lv_demo_conf.h](https://github.com/lvgl/lv_demos/blob/master/lv_demo_conf_template.h). Analogous to `LV_CONF_PATH` its path can be set by using the option `LV_DEMO_CONF_PATH`. \ No newline at end of file +Just like the [lv_conf.h](https://github.com/lvgl/lvgl/blob/master/lv_conf_template.h) header demos comes with its own config header called [lv_demo_conf.h](https://github.com/lvgl/lv_demos/blob/master/lv_demo_conf_template.h). Analogous to `LV_CONF_PATH` its path can be set by using the option `LV_DEMO_CONF_PATH`.