mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-02-07 23:45:07 +00:00
10 lines
252 B
Bash
Executable File
10 lines
252 B
Bash
Executable File
# Copyright (C) 2019 Intel Corporation. All rights reserved.
|
|
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
#!/bin/sh
|
|
if [ ! -d "lvgl" ]; then
|
|
git clone https://github.com/littlevgl/lvgl.git --branch v5.3
|
|
fi
|
|
make -f Makefile_wasm_app
|
|
|