Lines Matching full:cmake
2 # CMake chapter
3 LVGL supports integrating with [CMake](https://cmake.org/). It comes with preconfigured targets for:
4 - [Espressif (ESP32)](https://docs.espressif.com/projects/esp-idf/en/v3.3/get-started-cmake/index.h…
8 On top of the preconfigured targets you can also use "plain" CMake to integrate LVGL into any custo…
11 - CMake ( >= 3.12.4 )
16 ## Building LVGL with CMake
17 …nclude external CMake projects into your own. A modern one also used in this example is the CMake …
19 ```cmake
43 ### Additional CMake options argument
44 Besides `LV_CONF_PATH` there are two additional CMake options to specify include paths.
61 ## Building LVGL examples with CMake
62 LVGL [examples](https://docs.lvgl.io/master/examples.html) have their own CMake target. If you want…
64 ```cmake
69 ## Building LVGL drivers and demos with CMake
72 ```cmake
81 # Build shared libraries with CMake
82 By default, LVGL will be built as a static library (archive). CMake can instead be instructed to bu…
83 ```cmake
88 $ cmake "-DBUILD_SHARED_LIBS=ON" .