mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-15 17:30:27 +08:00
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>
11 lines
263 B
CMake
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)
|