Commit Inicial

This commit is contained in:
2024-05-21 12:44:33 +02:00
commit 40ac38011a
20 changed files with 12880 additions and 0 deletions

13
config/config.h.in Normal file
View File

@@ -0,0 +1,13 @@
#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 @
static constexpr std::string_view arffFiles_project_name = "@PROJECT_NAME@";
static constexpr std::string_view arffFiles_project_version = "@PROJECT_VERSION@";
static constexpr std::string_view arffFiles_project_description = "@PROJECT_DESCRIPTION@";
static constexpr std::string_view arffFiles_data_path = "@ArffFiles_SOURCE_DIR@/tests/data/";