You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
726 B
34 lines
726 B
#!/usr/bin/env -S cmake -P
|
|
|
|
# SPDX-FileCopyrightText: Copyright 2026 crueter
|
|
# SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
cmake_minimum_required(VERSION 3.31)
|
|
|
|
include(${CMAKE_CURRENT_LIST_DIR}/../ScriptUtils.cmake)
|
|
|
|
function(usage)
|
|
echo([=[
|
|
Usage: cpmutil.sh package fetch [-a|--all] [PACKAGE]...
|
|
|
|
Fetch the specified package or packages from their defined download locations.
|
|
If the package is already cached, it will not be re-fetched.
|
|
|
|
Options:
|
|
-a, --all Operate on all packages in this project.
|
|
]=])
|
|
endfunction()
|
|
|
|
set(NO_CI TRUE)
|
|
parse_script_args(args)
|
|
|
|
foreach(key ${args})
|
|
if (ci)
|
|
continue()
|
|
endif()
|
|
|
|
parse_key(${key})
|
|
echo("-- ${key}")
|
|
|
|
fetch_package_object()
|
|
endforeach()
|