Files
MaaAssistantArknights/cmake/modules/adb-lite.cmake
MistEO 5c0445d3ab refactor: 依赖大更新 (#13908)
Co-authored-by: status102 <102887808+status102@users.noreply.github.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
2025-09-08 21:17:47 +08:00

11 lines
263 B
CMake

include(FetchContent)
if (CMAKE_VERSION VERSION_GREATER_EQUAL "3.24.0")
cmake_policy(SET CMP0135 NEW)
endif()
FetchContent_Declare(
adbLite
GIT_REPOSITORY https://github.com/hguandl/adb-lite.git
GIT_TAG v0.1.0
)
FetchContent_MakeAvailable(adbLite)