diff --git a/src/config.h.in b/src/config.h.in index b868bbf..1536de8 100644 --- a/src/config.h.in +++ b/src/config.h.in @@ -1,7 +1,11 @@ #ifndef CONFIG_H #define CONFIG_H +#ifdef _WIN32 +#define DATADIR "../share/Parsodus/" +#else #define DATADIR "@CMAKE_INSTALL_PREFIX@/share/Parsodus/" +#endif #endif //CONFIG_H diff --git a/src/driver.cpp b/src/driver.cpp index 50aeb12..1a2607e 100644 --- a/src/driver.cpp +++ b/src/driver.cpp @@ -4,6 +4,11 @@ #include #include + +#if defined(_WIN32) +#include +#endif + namespace { /** * Filter only valid identifier chars: alphanumeric, and not starting with a digit