Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
L
libzmq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
libzmq
Commits
d58dfa49
Commit
d58dfa49
authored
May 12, 2014
by
Olaf Mandel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update build files after plain_mechanism split
This became necessary after
22d6a974
parent
3f479f53
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
31 additions
and
22 deletions
+31
-22
CMakeLists.txt
CMakeLists.txt
+2
-1
Makefile.mingw32
builds/mingw32/Makefile.mingw32
+1
-1
libzmq.vcproj
builds/msvc/vs2008/libzmq/libzmq.vcproj
+4
-2
libzmq.vcxproj
builds/msvc/vs2010/libzmq/libzmq.vcxproj
+3
-3
libzmq.vcxproj.filters
builds/msvc/vs2010/libzmq/libzmq.vcxproj.filters
+5
-3
libzmq.vcxproj
builds/msvc/vs2012/libzmq/libzmq.vcxproj
+3
-3
libzmq.vcxproj.filters
builds/msvc/vs2012/libzmq/libzmq.vcxproj.filters
+5
-3
libzmq.vcxproj
builds/msvc/vs2013/libzmq/libzmq.vcxproj
+3
-3
libzmq.vcxproj.filters
builds/msvc/vs2013/libzmq/libzmq.vcxproj.filters
+5
-3
No files found.
CMakeLists.txt
View file @
d58dfa49
...
...
@@ -399,7 +399,8 @@ set(cxx-sources
pgm_sender.cpp
pgm_socket.cpp
pipe.cpp
plain_mechanism.cpp
plain_client.cpp
plain_server.cpp
poll.cpp
poller_base.cpp
precompiled.cpp
...
...
builds/mingw32/Makefile.mingw32
View file @
d58dfa49
...
...
@@ -23,7 +23,7 @@ OBJS = ctx.o reaper.o dist.o err.o \
dealer.o router.o xpub.o xsub.o stream.o
\
poller_base.o
select
.o poll.o epoll.o kqueue.o devpoll.o
\
curve_client.o curve_server.o
\
mechanism.o null_mechanism.o plain_
mechanism
.o
\
mechanism.o null_mechanism.o plain_
client.o plain_server
.o
\
zmq.o zmq_utils.o
%.o
:
../../src/%.cpp
...
...
builds/msvc/vs2008/libzmq/libzmq.vcproj
View file @
d58dfa49
...
...
@@ -131,7 +131,8 @@
<File
RelativePath=
"..\..\..\..\src\pgm_sender.cpp"
/>
<File
RelativePath=
"..\..\..\..\src\pgm_socket.cpp"
/>
<File
RelativePath=
"..\..\..\..\src\pipe.cpp"
/>
<File
RelativePath=
"..\..\..\..\src\plain_mechanism.cpp"
/>
<File
RelativePath=
"..\..\..\..\src\plain_client.cpp"
/>
<File
RelativePath=
"..\..\..\..\src\plain_server.cpp"
/>
<File
RelativePath=
"..\..\..\..\src\poll.cpp"
/>
<File
RelativePath=
"..\..\..\..\src\poller_base.cpp"
/>
<File
RelativePath=
"..\..\..\..\src\proxy.cpp"
/>
...
...
@@ -210,7 +211,8 @@
<File
RelativePath=
"..\..\..\..\src\pgm_sender.hpp"
/>
<File
RelativePath=
"..\..\..\..\src\pgm_socket.hpp"
/>
<File
RelativePath=
"..\..\..\..\src\pipe.hpp"
/>
<File
RelativePath=
"..\..\..\..\src\plain_mechanism.hpp"
/>
<File
RelativePath=
"..\..\..\..\src\plain_client.hpp"
/>
<File
RelativePath=
"..\..\..\..\src\plain_server.hpp"
/>
<File
RelativePath=
"..\..\..\..\src\platform.hpp"
/>
<File
RelativePath=
"..\..\..\..\src\poll.hpp"
/>
<File
RelativePath=
"..\..\..\..\src\poller.hpp"
/>
...
...
builds/msvc/vs2010/libzmq/libzmq.vcxproj
View file @
d58dfa49
...
...
@@ -286,7 +286,8 @@
<ClCompile
Include=
"..\..\..\..\src\pgm_sender.cpp"
/>
<ClCompile
Include=
"..\..\..\..\src\pgm_socket.cpp"
/>
<ClCompile
Include=
"..\..\..\..\src\pipe.cpp"
/>
<ClCompile
Include=
"..\..\..\..\src\plain_mechanism.cpp"
/>
<ClCompile
Include=
"..\..\..\..\src\plain_client.cpp"
/>
<ClCompile
Include=
"..\..\..\..\src\plain_server.cpp"
/>
<ClCompile
Include=
"..\..\..\..\src\poll.cpp"
/>
<ClCompile
Include=
"..\..\..\..\src\poller_base.cpp"
/>
<ClCompile
Include=
"..\..\..\..\src\precompiled.cpp"
/>
...
...
@@ -337,4 +338,4 @@
<ResourceCompile
Include=
"..\..\resource.rc"
/>
</ItemGroup>
<Import
Project=
"$(VCTargetsPath)\Microsoft.Cpp.targets"
/>
</Project>
\ No newline at end of file
</Project>
builds/msvc/vs2010/libzmq/libzmq.vcxproj.filters
View file @
d58dfa49
...
...
@@ -91,7 +91,10 @@
<ClCompile
Include=
"..\..\..\..\src\pipe.cpp"
>
<Filter>
src
</Filter>
</ClCompile>
<ClCompile
Include=
"..\..\..\..\src\plain_mechanism.cpp"
>
<ClCompile
Include=
"..\..\..\..\src\plain_client.cpp"
>
<Filter>
src
</Filter>
</ClCompile>
<ClCompile
Include=
"..\..\..\..\src\plain_server.cpp"
>
<Filter>
src
</Filter>
</ClCompile>
<ClCompile
Include=
"..\..\..\..\src\poll.cpp"
>
...
...
@@ -519,4 +522,4 @@
<Filter>
resource
</Filter>
</ResourceCompile>
</ItemGroup>
</Project>
\ No newline at end of file
</Project>
builds/msvc/vs2012/libzmq/libzmq.vcxproj
View file @
d58dfa49
...
...
@@ -286,7 +286,8 @@
<ClCompile
Include=
"..\..\..\..\src\pgm_sender.cpp"
/>
<ClCompile
Include=
"..\..\..\..\src\pgm_socket.cpp"
/>
<ClCompile
Include=
"..\..\..\..\src\pipe.cpp"
/>
<ClCompile
Include=
"..\..\..\..\src\plain_mechanism.cpp"
/>
<ClCompile
Include=
"..\..\..\..\src\plain_client.cpp"
/>
<ClCompile
Include=
"..\..\..\..\src\plain_server.cpp"
/>
<ClCompile
Include=
"..\..\..\..\src\poll.cpp"
/>
<ClCompile
Include=
"..\..\..\..\src\poller_base.cpp"
/>
<ClCompile
Include=
"..\..\..\..\src\precompiled.cpp"
/>
...
...
@@ -337,4 +338,4 @@
<ResourceCompile
Include=
"..\..\resource.rc"
/>
</ItemGroup>
<Import
Project=
"$(VCTargetsPath)\Microsoft.Cpp.targets"
/>
</Project>
\ No newline at end of file
</Project>
builds/msvc/vs2012/libzmq/libzmq.vcxproj.filters
View file @
d58dfa49
...
...
@@ -91,7 +91,10 @@
<ClCompile
Include=
"..\..\..\..\src\pipe.cpp"
>
<Filter>
src
</Filter>
</ClCompile>
<ClCompile
Include=
"..\..\..\..\src\plain_mechanism.cpp"
>
<ClCompile
Include=
"..\..\..\..\src\plain_client.cpp"
>
<Filter>
src
</Filter>
</ClCompile>
<ClCompile
Include=
"..\..\..\..\src\plain_server.cpp"
>
<Filter>
src
</Filter>
</ClCompile>
<ClCompile
Include=
"..\..\..\..\src\poll.cpp"
>
...
...
@@ -519,4 +522,4 @@
<Filter>
resource
</Filter>
</ResourceCompile>
</ItemGroup>
</Project>
\ No newline at end of file
</Project>
builds/msvc/vs2013/libzmq/libzmq.vcxproj
View file @
d58dfa49
...
...
@@ -292,7 +292,8 @@
<ClCompile
Include=
"..\..\..\..\src\pgm_sender.cpp"
/>
<ClCompile
Include=
"..\..\..\..\src\pgm_socket.cpp"
/>
<ClCompile
Include=
"..\..\..\..\src\pipe.cpp"
/>
<ClCompile
Include=
"..\..\..\..\src\plain_mechanism.cpp"
/>
<ClCompile
Include=
"..\..\..\..\src\plain_client.cpp"
/>
<ClCompile
Include=
"..\..\..\..\src\plain_server.cpp"
/>
<ClCompile
Include=
"..\..\..\..\src\poll.cpp"
/>
<ClCompile
Include=
"..\..\..\..\src\poller_base.cpp"
/>
<ClCompile
Include=
"..\..\..\..\src\precompiled.cpp"
/>
...
...
@@ -343,4 +344,4 @@
<ResourceCompile
Include=
"..\..\resource.rc"
/>
</ItemGroup>
<Import
Project=
"$(VCTargetsPath)\Microsoft.Cpp.targets"
/>
</Project>
\ No newline at end of file
</Project>
builds/msvc/vs2013/libzmq/libzmq.vcxproj.filters
View file @
d58dfa49
...
...
@@ -91,7 +91,10 @@
<ClCompile
Include=
"..\..\..\..\src\pipe.cpp"
>
<Filter>
src
</Filter>
</ClCompile>
<ClCompile
Include=
"..\..\..\..\src\plain_mechanism.cpp"
>
<ClCompile
Include=
"..\..\..\..\src\plain_client.cpp"
>
<Filter>
src
</Filter>
</ClCompile>
<ClCompile
Include=
"..\..\..\..\src\plain_server.cpp"
>
<Filter>
src
</Filter>
</ClCompile>
<ClCompile
Include=
"..\..\..\..\src\poll.cpp"
>
...
...
@@ -519,4 +522,4 @@
<Filter>
resource
</Filter>
</ResourceCompile>
</ItemGroup>
</Project>
\ No newline at end of file
</Project>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment