Searched full:build (Results 1 – 25 of 41) sorted by relevance
12
/lvgl-3.7.0/tests/ |
D | main.py | 53 # TODO: Intermediate files should be in the build folders, not alongside 70 '''Given the build options name, return the build directory name. 77 '''Given the build options name, return the build directory name. 79 Returns absolute path to the build directory.''' 85 '''Build all tests for the specified options name.''' 110 subprocess.check_call(['cmake', '--build', build_dir, 159 There are two types of LVGL tests: "build", and "test". The build-only 161 compiles and links (with various build options). There are also a set of 165 description='Build and/or run LVGL tests.', epilog=epilog) 166 parser.add_argument('--build-options', nargs=1, [all …]
|
D | README.md | 17 2. Build all build-only tests with `./tests/main.py build`. 18 3. Clean prior test build, build all build-only tests, 20 report `./tests/main.py --clean --report build test`.
|
/lvgl-3.7.0/env_support/cmsis-pack/ |
D | gen_pack.sh | 34 # Temporary pack build directory 35 PACK_BUILD=build/ 40 # Do not include the build directory if it is local 141 # Copy files into build base directory: $PACK_BUILD 174 echo "build aborted: Schema check of $PACK_VENDOR.$PACK_NAME.pdsc against PACK.xsd failed" 183 echo "build aborted: pack check failed" 216 echo "build aborted: archiving failed" 223 echo "build of pack succeeded"
|
/lvgl-3.7.0/docs/ |
D | build.py | 22 print("Exit build due to previous error") 58 # BUILD PDF 63 cmd("sphinx-build -b latex . out_latex") 67 # Copy the result PDF to the main directory to make it available for the HTML build 70 print("skipping latex build as requested") 72 # BUILD HTML 73 cmd("sphinx-build -b html . ../out_html")
|
D | CHANGELOG.md | 58 - fix: build on Windows (MinGW environment) [`4538`](https://github.com/lvgl/lvgl/pull/4538) 387 - feat(cmake-build): Option to allow building shared libraries. [`3278`](https://github.com/lvgl/lv… 804 - fix(build) fix sdl build with make [`43729d1`](https://github.com/littlevgl/lvgl/commit/43729d150… 901 - ci(cross) install build-essential [`772f219`](https://github.com/littlevgl/lvgl/commit/772f219c0a… 1084 - fix(build) remove main component dependency [`2420`](https://github.com/lvgl/lvgl/pull/2420) 1165 - fix(test) add #if guard to exclude test related files from the build [`c12a22e`](https://github.c… 1166 - fix(test) add #if guard to exclude test related files from the build [`fc364a4`](https://github.c… 1178 - fix(build) fix micropython build error [`54338f6`](https://github.com/lvgl/lvgl/commit/54338f6e57… 1266 - fix(build) remove main component dependency (#2420) [`f2c2393`](https://github.com/lvgl/lvgl/comm… 1368 - docs(rlottie) fix build error [`ce0b564`](https://github.com/lvgl/lvgl/commit/ce0b56458846daa6528… [all …]
|
/lvgl-3.7.0/.github/workflows/ |
D | build_micropython.yml | 8 build: 10 name: Build ${{ matrix.port }} port 40 - name: Build mpy-cross 48 - name: Build ESP32 port 59 - name: Build STM32 port 62 - name: Build Raspberry Pi PICO port 66 - name: Build Unix port
|
D | compile_docs.yml | 1 name: Build docs 11 build-and-deploy: 14 concurrency: docs-build-and-deploy 57 - name: Build examples (with cache) 59 - name: Build docs 60 run: docs/build.py
|
D | ccpp.yml | 10 build: 22 name: Build ${{ matrix.build_option }} 29 run: python tests/main.py --build-option=${{ matrix.build_option }} build 75 id: build 96 apt-get install build-essential ccache python3 libpng-dev ruby-full gcovr cmake -q -y
|
D | makefile.yml | 10 build: 13 name: Build using Makefile 19 - name: Build
|
D | release.yml | 10 build:
|
D | check_style.yml | 24 cd astyle/build/gcc/
|
/lvgl-3.7.0/docs/libs/ |
D | rlottie.md | 8 ## Build Rlottie 9 To build Samsung's Rlottie C++14-compatible compiler and optionally CMake 3.14 or higher is require… 11 To build on desktop you can follow the instructions from Rlottie's [README](https://github.com/Sams… 16 mkdir build 17 cd build 25 On embedded systems you need to take care of integrating Rlottie to the given build system.
|
/lvgl-3.7.0/docs/get-started/platforms/ |
D | cmake.md | 12 - Compatible build tool e.g. 14 - [Ninja](https://ninja-build.org/) 25 # Build an executable called "MyFirmware" 62 …lvgl.io/master/examples.html) have their own CMake target. If you want to build the examples simpl… 81 # Build shared libraries with CMake 82 …e built as a static library (archive). CMake can instead be instructed to build LVGL as shared lib…
|
D | pc-simulator.md | 58 4. If build essentials are not installed yet: `sudo apt-get install build-essential` 92 - Right-click on the project -> Project properties -> C/C++ Build -> Settings -> Librar… 96 Now you are ready to run LVGL on your PC. Click on the Hammer Icon on the top menu bar to Build the… 98 After a successful build, click on the Play button on the top menu bar to run the project. Now a wi…
|
D | espressif.md | 5 …rmation about ESP-IDF build system can be found [here](https://docs.espressif.com/projects/esp-idf… 44 During next project build, LVGL component will be fetched from the component registry and added to …
|
/lvgl-3.7.0/docs/porting/ |
D | project.md | 18 LVGL also supports `make` and `CMake` build systems out of the box. To add LVGL to your Makefile ba… 53 …try to include `lv_conf.h`. Instead you can pass the config defines using build options. For examp… 55 …ogether with Kconfig, but keep in mind that the value from `lv_conf.h` or build settings (`-D...`)…
|
/lvgl-3.7.0/env_support/cmake/ |
D | micropython.cmake | 4 # With micropython, build lvgl as interface library, link chain is: 13 # /home/test/build/lv_micropython/ports/rp2/build-PICO/lv_mp.c:29316:16: error:
|
D | custom.cmake | 14 # Option to build shared libraries (as opposed to static), default: OFF 15 option(BUILD_SHARED_LIBS "Build shared libraries" OFF)
|
/lvgl-3.7.0/docs/get-started/os/ |
D | nuttx.md | 29 … to get things right, where each iteration consists of **`Change code` > `Build` > `Flash` > `Run`… 49 Let's use the [Windows Subsystem for Linux](https://acassis.wordpress.com/2018/01/10/how-to-build-n… 52 $ sudo apt-get install automake bison build-essential flex gcc-arm-none-eabi gperf git libncurses5-…
|
/lvgl-3.7.0/docs/get-started/bindings/ |
D | micropython.md | 26 …o get things right. With C, each iteration consists of **`Change code` > `Build` > `Flash` > `Run`… 75 Micropython is ported to many platforms. One notable port is "unix", which allows you to build and …
|
/lvgl-3.7.0/src/extra/libs/sjpg/ |
D | tjpgd.c | 222 for (j = i = 0; i < 16; i++) { /* Re-build huffman code word table */ in create_huffman_tbl() 818 if (JD_FORMAT != 2) { /* RGB output (build an RGB MCU from Y/C component) */ in mcu_output() 843 } else { /* Monochrome output (build a grayscale MCU from Y comopnent) */ in mcu_output() 893 /* Build a 1/8 descaled RGB MCU from discrete comopnents */ in mcu_output()
|
/lvgl-3.7.0/zephyr/ |
D | module.yml | 3 build:
|
/lvgl-3.7.0/ |
D | .gitignore | 22 build/
|
D | library.json | 10 "build": { object
|
/lvgl-3.7.0/docs/others/ |
D | fragment.md | 15 navigation. You can use fragment manager to build navigation stack, or multi pane application easil…
|
12