mirror of
https://github.com/slsdetectorgroup/aare.git
synced 2025-06-09 05:50:43 +02:00
7 lines
185 B
C++
7 lines
185 B
C++
#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);
|
|
} |