11 lines
462 B
C
11 lines
462 B
C
#pragma once
|
|
|
|
#include <string>
|
|
#include <string_view>
|
|
|
|
static constexpr std::string_view platform_project_name = "@PROJECT_NAME@";
|
|
static constexpr std::string_view platform_project_version = "@PROJECT_VERSION@";
|
|
static constexpr std::string_view platform_project_description = "@PROJECT_DESCRIPTION@";
|
|
static constexpr std::string_view platform_git_sha = "@GIT_SHA@";
|
|
static constexpr std::string_view platform_data_path = "@Platform_SOURCE_DIR@/tests/data/";
|