-
Notifications
You must be signed in to change notification settings - Fork 142
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add lvgl to submodule on port/linux for CI
compile pass for lvgl support compile lvgl on CI
- Loading branch information
Showing
26 changed files
with
7,605 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "port/linux/package/lvgl/lvgl"] | ||
path = port/linux/package/lvgl/lvgl | ||
url = https://gitee.com/Lyon1998/lvgl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#设置 BINARY 为项目名IndexProject | ||
set(BINARY ${CMAKE_PROJECT_NAME}) | ||
set(CMAKE_C_FLAGS "-Wno-unused-variable") | ||
file(GLOB_RECURSE SOURCES LIST_DIRECTORIES true *.h *.c) | ||
set(SOURCES ${SOURCES}) | ||
|
||
link_libraries(m) | ||
|
||
add_library(${BINARY}-lvgl | ||
STATIC | ||
${SOURCES} | ||
) |
Oops, something went wrong.