blob: 53e84b17db59c3999fffa2cb593cea6766ac10d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include <filesystem>
#include <string>
namespace AppConfig {
constexpr std::string_view kAppName = "ProjectBrussel";
// Since kAppName is initialized by a C string literal, we know it's null termianted
constexpr const char* kAppNameC = kAppName.data();
inline std::string dataDir;
} // namespace AppConfig
|