feat(clusterApp):BringUp OpenGlES+DRM on RK3576

This commit is contained in:
2026-04-28 21:30:18 +08:00
parent f3f5d1b00b
commit d5b56baefc
213 changed files with 136403 additions and 678 deletions

View File

@@ -0,0 +1,29 @@
# Whether the utils lib was build.
set(CJSON_UTILS_FOUND OFF)
# The include directories used by cJSON
set(CJSON_INCLUDE_DIRS "/home/huaxu/develop/cluster/packages/install/usr/include")
set(CJSON_INCLUDE_DIR "/home/huaxu/develop/cluster/packages/install/usr/include")
get_filename_component(_dir "${CMAKE_CURRENT_LIST_FILE}" PATH)
# The cJSON library
set(CJSON_LIBRARY "cjson")
if(ON)
# Include the target
include("${_dir}/cjson.cmake")
endif()
if(CJSON_UTILS_FOUND)
# The cJSON utils library
set(CJSON_UTILS_LIBRARY )
# All cJSON libraries
set(CJSON_LIBRARIES "" "cjson")
if(ON)
# Include the target
include("${_dir}/cjson_utils.cmake")
endif()
else()
# All cJSON libraries
set(CJSON_LIBRARIES "cjson")
endif()