stuff-from-scratch/test/test_utils/TestDataLocations.h.in
2023-01-05 13:16:52 +00:00

13 lines
No EOL
224 B
C

#pragma once
#include <filesystem>
using Path = std::filesystem::path;
namespace TestDataLocations
{
static Path getTestDataDir()
{
return std::filesystem::path("${CMAKE_RUNTIME_OUTPUT_DIRECTORY}") / "test_data";
}
}