This commit is contained in:
Erik Fröjdh
2024-10-25 10:23:34 +02:00
parent ae71e23dd2
commit b1b020ad60
20 changed files with 2417 additions and 0 deletions

7
tests/test_config.hpp.in Normal file
View File

@@ -0,0 +1,7 @@
#pragma once
#include <filesystem>
static constexpr auto test_data_path_str = "@TEST_FILE_PATH@";
inline auto test_data_path() {
return std::filesystem::path(test_data_path_str);
}