diff options
author | Martin Sustrik <sustrik@250bpm.com> | 2010-06-26 20:11:40 +0200 |
---|---|---|
committer | Martin Sustrik <sustrik@250bpm.com> | 2010-06-26 20:11:40 +0200 |
commit | ba91644fdb48cec97edc6965c4ca7ab564a3513f (patch) | |
tree | 034f8273c2ecab679e4fd84e6b66a18f19826e26 | |
parent | 1dda8a2aaabd3b7705b0ecd67d6d9737d1978946 (diff) |
msg_store added to MSVC build
-rw-r--r-- | builds/msvc/libzmq/libzmq.vcproj | 8 | ||||
-rw-r--r-- | src/msg_store.cpp | 2 |
2 files changed, 10 insertions, 0 deletions
diff --git a/builds/msvc/libzmq/libzmq.vcproj b/builds/msvc/libzmq/libzmq.vcproj index c917609..e914414 100644 --- a/builds/msvc/libzmq/libzmq.vcproj +++ b/builds/msvc/libzmq/libzmq.vcproj @@ -226,6 +226,10 @@ > </File> <File + RelativePath="..\..\..\src\msg_store.cpp" + > + </File> + <File RelativePath="..\..\..\src\object.cpp" > </File> @@ -472,6 +476,10 @@ > </File> <File + RelativePath="..\..\..\src\msg_store.hpp" + > + </File> + <File RelativePath="..\..\..\src\mutex.hpp" > </File> diff --git a/src/msg_store.cpp b/src/msg_store.cpp index f023d96..1a5f965 100644 --- a/src/msg_store.cpp +++ b/src/msg_store.cpp @@ -26,6 +26,8 @@ #include <sstream> #include <algorithm> +#include "platform.hpp" + #ifdef ZMQ_HAVE_WINDOWS #include <io.h> #else |