From 496f674b90cdf00573e55526c124eb2cbd242401 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Av=C3=A9?= Date: Fri, 6 Jan 2017 01:24:59 +0100 Subject: [PATCH] Fix Windows compatibility --- src/config.h.in | 4 ++++ src/driver.cpp | 5 +++++ 2 files changed, 9 insertions(+) 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