2020-12-22 18:42:30 +01:00
|
|
|
#include <credits.h>
|
|
|
|
|
|
|
|
namespace sdrpp_credits {
|
|
|
|
const char* contributors[] = {
|
|
|
|
"Ryzerth (Author)",
|
|
|
|
"aosync",
|
|
|
|
"Alexsey Shestacov",
|
|
|
|
"Benjamin Kyd",
|
2020-12-25 17:22:24 +01:00
|
|
|
"Cropinghigh",
|
2020-12-22 18:42:30 +01:00
|
|
|
"Tobias Mädel",
|
|
|
|
"Raov",
|
|
|
|
"Howard0su"
|
|
|
|
};
|
|
|
|
|
|
|
|
const char* libraries[] = {
|
|
|
|
"Dear ImGui (ocornut)",
|
|
|
|
"json (nlohmann)",
|
|
|
|
"portaudio (P.A. comm.)",
|
|
|
|
"SoapySDR (PothosWare)",
|
|
|
|
"spdlog (gabime)",
|
|
|
|
};
|
|
|
|
|
|
|
|
const char* patrons[] = {
|
|
|
|
"SignalsEverywhere",
|
|
|
|
"Lee Donaghy"
|
|
|
|
};
|
|
|
|
|
|
|
|
const int contributorCount = sizeof(contributors) / sizeof(char*);
|
|
|
|
const int libraryCount = sizeof(libraries) / sizeof(char*);
|
|
|
|
const int patronCount = sizeof(patrons) / sizeof(char*);
|
|
|
|
}
|