Fix Windows compatibility

This commit is contained in:
Thomas Avé 2017-01-06 01:24:59 +01:00
parent dfe6facc8f
commit 496f674b90
2 changed files with 9 additions and 0 deletions

View File

@ -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

View File

@ -4,6 +4,11 @@
#include <fstream>
#include <sys/stat.h>
#if defined(_WIN32)
#include <direct.h>
#endif
namespace {
/**
* Filter only valid identifier chars: alphanumeric, and not starting with a digit