Lines Matching full:on
1 # Simulator on PC
4 …our PC** (i.e. without any development boards). LVGL will run on a simulator environment on the PC…
6 Using the simulator on a PC has the following advantages:
7 - Hardware independent - Write code, run it on the PC and see the result on a monitor.
14 …rated Development Environments). Choose your favorite IDE, read its README on GitHub, download the…
16 - [Eclipse with SDL driver](https://github.com/lvgl/lv_sim_eclipse_sdl): Recommended on Linux and M…
17 - [CodeBlocks](https://github.com/lvgl/lv_sim_codeblocks_win): Recommended on Windows
19 - [VSCode with SDL driver](https://github.com/lvgl/lv_sim_vscode_sdl): Recommended on Linux and Mac
20 - [PlatformIO with SDL driver](https://github.com/lvgl/lv_platformio): Recommended on Linux and Mac
26 …ent but, for simplicity, the configuration for Eclipse CDT is what we'll focus on in this tutorial.
31 **Note: If you are on Windows, it's usually better to use the Visual Studio or CodeBlocks projects …
39 Eclipse is a Java-based tool so be sure **Java Runtime Environment** is installed on your system.
41 On Debian-based distros (e.g. Ubuntu): `sudo apt-get install default-jre`
53 On **Linux** you can easily install SDL2 using a terminal:
73 On **OSX** you can easily install SDL2 with brew: `brew install sdl2`
79 A pre-configured graphics library project (based on the latest release) is always available to get …
80 You can find the latest one on [GitHub](https://github.com/lvgl/lv_sim_eclipse_sdl).
89 On **Windows** you have to do two additional things:
92 - Right-click on the project -> Project properties -> C/C++ Build -> Settings -> Librar…
96 …on your PC. Click on the Hammer Icon on the top menu bar to Build the project. If you have done ev…
98 After a successful build, click on the Play button on the top menu bar to run the project. Now a wi…
100 Now you are ready to use LVGL and begin development on your PC.