10 lines
416 B
C
10 lines
416 B
C
#pragma once
|
|
|
|
#include <string>
|
|
#include <string_view>
|
|
|
|
static constexpr std::string_view project_name = "@PROJECT_NAME@";
|
|
static constexpr std::string_view project_version = "@PROJECT_VERSION@";
|
|
static constexpr std::string_view project_description = "@PROJECT_DESCRIPTION@";
|
|
static constexpr std::string_view git_sha = "@GIT_SHA@";
|
|
static constexpr std::string_view data_path = "@bayesnet_SOURCE_DIR@/tests/data/"; |