Browse Source

Fix cpm-fetch

Signed-off-by: crueter <crueter@eden-emu.dev>
pull/94/head
crueter 6 months ago
parent
commit
8169b09749
  1. 2
      docs/CPM.md
  2. 2
      tools/cpm-fetch-all.sh

2
docs/CPM.md

@ -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

2
tools/cpm-fetch-all.sh

@ -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
Loading…
Cancel
Save