mirror of
https://gitee.com/dlmu-cone/tronone-h7-scaffold
synced 2026-07-24 03:27:45 +08:00
10 lines
220 B
CMake
10 lines
220 B
CMake
find_package(rpl QUIET)
|
|
|
|
if (NOT rpl_FOUND)
|
|
FetchContent_Declare(
|
|
rpl
|
|
GIT_REPOSITORY https://gitee.com/dlmu-cone/rpl
|
|
GIT_TAG main
|
|
)
|
|
FetchContent_MakeAvailable(rpl)
|
|
endif () |