move definition of the INPUT_FOLDER variable from header to implementation file

This commit is contained in:
Axel Kohlmeyer
2020-05-20 15:22:43 -04:00
parent 2536076ce9
commit 917b7dd4fa
2 changed files with 6 additions and 6 deletions

View File

@ -55,6 +55,11 @@ bool print_stats = false;
// whether to print verbose output (i.e. not capturing LAMMPS screen output).
bool verbose = false;
// location for 'in.*' and 'data.*' files required by tests
#define STRINGIFY(val) XSTR(val)
#define XSTR(val) #val
std::string INPUT_FOLDER = STRINGIFY(TEST_INPUT_FOLDER);
int main(int argc, char **argv)
{
MPI_Init(&argc, &argv);