mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-02-07 15:35:16 +00:00
![Wenyong Huang](/assets/img/avatar_default.png)
The littlevgl library had changed its name and domain to [LVGL](https://lvgl.io). See https://blog.lvgl.io/2020-06-01/announcement We change some names and links accordingly. Also remove the cloning for tlsf library as it isn't used now.
19 lines
551 B
CMake
19 lines
551 B
CMake
# Copyright (C) 2019 Intel Corporation. All rights reserved.
|
|
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
cmake_minimum_required(VERSION 2.8.2)
|
|
|
|
project(lvgl_download NONE)
|
|
|
|
include(ExternalProject)
|
|
ExternalProject_Add(${lv_name}
|
|
GIT_REPOSITORY https://github.com/lvgl/lvgl.git
|
|
GIT_TAG v5.3
|
|
BINARY_DIR ""
|
|
SOURCE_DIR "${CMAKE_CURRENT_BINARY_DIR}/../build/lvgl"
|
|
CONFIGURE_COMMAND ""
|
|
BUILD_COMMAND ""
|
|
INSTALL_COMMAND ""
|
|
TEST_COMMAND ""
|
|
)
|