mirror of
https://git.gfz-potsdam.de/naaice/poet.git
synced 2025-12-16 04:48:23 +01:00
11 lines
241 B
C++
11 lines
241 B
C++
#ifndef POET_H
|
|
#define POET_H
|
|
|
|
#include <string>
|
|
static const char *poet_version = "@POET_VERSION@";
|
|
|
|
// using the Raw string literal to avoid escaping the quotes
|
|
static inline std::string kin_r_library = R"(@R_KIN_LIB@)";
|
|
|
|
#endif // POET_H
|