diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-04-19 22:57:08 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-04-19 22:57:08 +0200 |
commit | 0c0292fec1304d25d00f01b307c88ec2066f29f5 (patch) | |
tree | 09f69084a825b827fd7f47271a25f2b63d1052ee /synchronizer | |
parent | c12b0d0ef846518db2d9c44676792a4bfc4ffe99 (diff) | |
download | sink-0c0292fec1304d25d00f01b307c88ec2066f29f5.tar.gz sink-0c0292fec1304d25d00f01b307c88ec2066f29f5.zip |
Windows compat
Diffstat (limited to 'synchronizer')
-rw-r--r-- | synchronizer/main.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/synchronizer/main.cpp b/synchronizer/main.cpp index e1e169b..5f14f18 100644 --- a/synchronizer/main.cpp +++ b/synchronizer/main.cpp | |||
@@ -34,7 +34,12 @@ | |||
34 | #include <sstream> | 34 | #include <sstream> |
35 | #include <thread> | 35 | #include <thread> |
36 | #include <chrono> | 36 | #include <chrono> |
37 | #ifndef Q_OS_WIN | ||
37 | #include <unistd.h> | 38 | #include <unistd.h> |
39 | #else | ||
40 | #include <io.h> | ||
41 | #include <process.h> | ||
42 | #endif | ||
38 | 43 | ||
39 | #include "listener.h" | 44 | #include "listener.h" |
40 | #include "log.h" | 45 | #include "log.h" |