Fix Windows compatibility
This commit is contained in:
parent
dfe6facc8f
commit
496f674b90
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue