BayesNet/config/config.h.in

14 lines
582 B
C
Raw Permalink Normal View History

2023-07-17 20:51:15 +00:00
#pragma once
#include <string>
#include <string_view>
#define PROJECT_VERSION_MAJOR @PROJECT_VERSION_MAJOR @
#define PROJECT_VERSION_MINOR @PROJECT_VERSION_MINOR @
#define PROJECT_VERSION_PATCH @PROJECT_VERSION_PATCH @
2024-01-06 21:38:34 +00:00
static constexpr std::string_view project_name = "@PROJECT_NAME@";
2023-07-17 20:51:15 +00:00
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@";
2024-01-07 18:58:22 +00:00
static constexpr std::string_view data_path = "@BayesNet_SOURCE_DIR@/tests/data/";