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.
20 lines
433 B
20 lines
433 B
// SPDX-FileCopyrightText: 2025 Eden Emulator Project
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#pragma once
|
|
|
|
namespace Common {
|
|
|
|
static const constexpr std::array<const char *, @DEPS_LENGTH@> dep_names = {
|
|
@DEP_NAMES@
|
|
};
|
|
|
|
static const constexpr std::array<const char *, @DEPS_LENGTH@> dep_hashes = {
|
|
@DEP_SHAS@
|
|
};
|
|
|
|
static const constexpr std::array<const char *, @DEPS_LENGTH@> dep_urls = {
|
|
@DEP_URLS@
|
|
};
|
|
|
|
} // namespace Common
|