2019-05-17 09:15:25 +00:00
|
|
|
# Copyright (C) 2019 Intel Corporation. All rights reserved.
|
2019-11-11 23:45:21 +00:00
|
|
|
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2019-05-17 09:15:25 +00:00
|
|
|
|
|
|
|
cmake_minimum_required(VERSION 2.8.2)
|
|
|
|
|
|
|
|
project(lvgl_download NONE)
|
|
|
|
|
|
|
|
include(ExternalProject)
|
|
|
|
ExternalProject_Add(${lv_name}
|
2022-02-15 00:41:36 +00:00
|
|
|
GIT_REPOSITORY https://github.com/lvgl/lvgl.git
|
2019-05-17 09:15:25 +00:00
|
|
|
GIT_TAG v5.3
|
|
|
|
BINARY_DIR ""
|
2020-04-22 03:02:55 +00:00
|
|
|
SOURCE_DIR "${CMAKE_CURRENT_BINARY_DIR}/../build/lvgl"
|
2019-05-17 09:15:25 +00:00
|
|
|
CONFIGURE_COMMAND ""
|
|
|
|
BUILD_COMMAND ""
|
|
|
|
INSTALL_COMMAND ""
|
|
|
|
TEST_COMMAND ""
|
|
|
|
)
|