mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-01 20:29:00 +00:00
remove empty strings from FetchContent to eliminate cmake build warnings like this: CMake Warning (dev) at /usr/share/cmake/Modules/FetchContent.cmake:1564 (cmake_parse_arguments): The BUILD_COMMAND keyword was followed by an empty string or no value at all. Policy CMP0174 is not set, so cmake_parse_arguments() will unset the ARG_BUILD_COMMAND variable rather than setting it to an empty string. Signed-off-by: raiden00pl <raiden00@railab.me>
99 lines
2.8 KiB
CMake
99 lines
2.8 KiB
CMake
# ##############################################################################
|
|
# apps/system/adb/CMakeLists.txt
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
# 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
|
|
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_SYSTEM_ADBD}
|
|
NAME
|
|
${CONFIG_ADBD_PROGNAME}
|
|
SRCS
|
|
${CSRCS}
|
|
INCLUDE_DIRECTORIES
|
|
${CMAKE_CURRENT_LIST_DIR}/microADB
|
|
STACKSIZE
|
|
${CONFIG_ADBD_STACKSIZE}
|
|
PRIORITY
|
|
${CONFIG_ADBD_PRIORITY})
|
|
|
|
endif()
|