13 lines
290 B
C++
13 lines
290 B
C++
#pragma once
|
|
|
|
/*
|
|
* These values are automatically set according to their cmake variables.
|
|
*/
|
|
|
|
#include <cstdint>
|
|
|
|
struct TestindDataPath
|
|
{
|
|
static constexpr char const * const kDataPath = "${GEOCORE_ROOT}/data";
|
|
static constexpr char const * const kProjectName = "${PROJECT_NAME}";
|
|
};
|