mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2026-08-26 17:12:03 +00:00
21 lines
433 B
C
21 lines
433 B
C
|
|
// 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
|