Browse Source
Fix cpm-fetch
Signed-off-by: crueter <crueter@eden-emu.dev>
pull/94/head
crueter
6 months ago
No known key found for this signature in database
GPG Key ID: 425ACD2D4830EBC6
2 changed files with
2 additions and
2 deletions
-
docs/CPM.md
-
tools/cpm-fetch-all.sh
|
|
|
@ -245,6 +245,6 @@ include(CPMUtil) |
|
|
|
|
|
|
|
Currently, `cpm-fetch.sh` defines the following directories for cpmfiles (max depth of 2, so subdirs are caught as well): |
|
|
|
|
|
|
|
`externals src/yuzu src/dynarmic .` |
|
|
|
`externals src/qt_common src/dynarmic .` |
|
|
|
|
|
|
|
Whenever you add a new cpmfile, update the script accordingly |
|
|
|
@ -6,6 +6,6 @@ |
|
|
|
# SPDX-FileCopyrightText: 2025 crueter |
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later |
|
|
|
|
|
|
|
LIBS=$(find . externals src/yuzu/externals src/dynarmic -maxdepth 2 -name cpmfile.json -exec jq -j 'keys_unsorted | join(" ")' {} \; -printf " ") |
|
|
|
LIBS=$(find . externals src/qt_common src/dynarmic -maxdepth 2 -name cpmfile.json -exec jq -j 'keys_unsorted | join(" ")' {} \; -printf " ") |
|
|
|
|
|
|
|
tools/cpm-fetch.sh $LIBS |