1.. _building_lvgl: 2 3============= 4Building LVGL 5============= 6 7 8Make and CMake 9************** 10 11LVGL also supports ``make`` and ``CMake`` build systems out of the box. 12To add LVGL to your Makefile based build system add these lines to your 13main Makefile: 14 15.. code-block:: make 16 17 LVGL_DIR_NAME ?= lvgl #The name of the lvgl folder (change this if you have renamed it) 18 LVGL_DIR ?= ${shell pwd} #The path where the lvgl folder is 19 include $(LVGL_DIR)/$(LVGL_DIR_NAME)/lvgl.mk 20 21For integration with CMake take a look this section of the 22:ref:`Documentation <build_cmake>`. 23 24 25Managed builds 26************** 27TODO 28 29