2e133feb09
Signed-off-by: xuxin19 <xuxin19@xiaomi.com>
108 lines
3.0 KiB
CMake
108 lines
3.0 KiB
CMake
# ##############################################################################
|
|
# apps/system/adb/CMakeLists.txt
|
|
#
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more contributor
|
|
# license agreements. See the NOTICE file distributed with this work for
|
|
# additional information regarding copyright ownership. The ASF licenses this
|
|
# file to you under the Apache License, Version 2.0 (the "License"); you may not
|
|
# use this file except in compliance with the License. You may obtain a copy of
|
|
# the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations under
|
|
# the License.
|
|
#
|
|
# ##############################################################################
|
|
|
|
if(CONFIG_SYSTEM_ADBD)
|
|
|
|
if(NOT EXISTS ${CMAKE_CURRENT_LIST_DIR}/microADB)
|
|
|
|
if(NOT ADBD_URL)
|
|
set(ADBD_URL "https://github.com/spiriou/microADB/archive")
|
|
endif()
|
|
|
|
if(NOT ADBD_VERSION)
|
|
set(ADBD_VERSION "b0bc09a7612000186df723f2fe55705b1c2fe873")
|
|
endif()
|
|
|
|
FetchContent_Declare(
|
|
microADB
|
|
URL "${ADBD_URL}/${ADBD_VERSION}.zip"
|
|
SOURCE_DIR
|
|
${CMAKE_CURRENT_LIST_DIR}/microADB
|
|
BINARY_DIR
|
|
${CMAKE_BINARY_DIR}/apps/system/microADB/microADB
|
|
CONFIGURE_COMMAND
|
|
""
|
|
BUILD_COMMAND
|
|
""
|
|
INSTALL_COMMAND
|
|
""
|
|
TEST_COMMAND
|
|
""
|
|
DOWNLOAD_NO_PROGRESS true
|
|
TIMEOUT 30)
|
|
|
|
FetchContent_GetProperties(microADB)
|
|
|
|
if(NOT microADB_POPULATED)
|
|
FetchContent_Populate(microADB)
|
|
endif()
|
|
endif()
|
|
|
|
set(CSRCS adb_main.c adb_banner.c microADB/adb_client.c microADB/adb_frame.c
|
|
microADB/hal/hal_uv.c microADB/hal/hal_uv_packet.c)
|
|
|
|
if(CONFIG_ADBD_TCP_SERVER)
|
|
list(APPEND CSRCS microADB/hal/hal_uv_client_tcp.c)
|
|
endif()
|
|
|
|
if(CONFIG_ADBD_USB_SERVER)
|
|
list(APPEND CSRCS microADB/hal/hal_uv_client_usb.c)
|
|
endif()
|
|
|
|
if(CONFIG_ADBD_QEMU_SERVER)
|
|
list(APPEND CSRCS microADB/hal/hal_uv_client_qemu.c)
|
|
endif()
|
|
|
|
if(CONFIG_ADBD_AUTHENTICATION)
|
|
list(APPEND CSRCS microADB/adb_auth_key.c)
|
|
endif()
|
|
|
|
if(CONFIG_ADBD_FILE_SERVICE)
|
|
list(APPEND CSRCS microADB/file_sync_service.c)
|
|
endif()
|
|
|
|
if(CONFIG_ADBD_LOGCAT_SERVICE)
|
|
list(APPEND CSRCS logcat_service.c)
|
|
endif()
|
|
|
|
if(CONFIG_ADBD_SHELL_SERVICE)
|
|
list(APPEND CSRCS microADB/hal/shell_service_uv.c)
|
|
endif()
|
|
|
|
if(CONFIG_ADBD_SOCKET_SERVICE)
|
|
list(APPEND CSRCS microADB/tcp_service.c microADB/hal/hal_uv_socket.c)
|
|
endif()
|
|
|
|
nuttx_add_application(
|
|
MODULE
|
|
${CONFIG_ADB_SERVER}
|
|
NAME
|
|
${CONFIG_ADBD_PROGNAME}
|
|
SRCS
|
|
${CSRCS}
|
|
INCLUDE_DIRECTORIES
|
|
${CMAKE_CURRENT_LIST_DIR}/microADB
|
|
STACKSIZE
|
|
${CONFIG_ADBD_STACKSIZE}
|
|
PRIORITY
|
|
${CONFIG_ADBD_PRIORITY})
|
|
|
|
endif()
|