-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cleanup in requirements and in cmake also edited readme to help with …
…getting ZeroMQ & czmq
- Loading branch information
1 parent
c42d9e7
commit b422765
Showing
5 changed files
with
57 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,29 @@ | ||
# WebShare-Connect | ||
## WebShare-Connect | ||
A program that transfer of files of any size over the web | ||
|
||
## Having trouble getting ZeroMQ and czmq on Linux? | ||
Note for building below. | ||
You can clone the repository to any location. | ||
Make install will put the files into the correct locations. | ||
# To build ZeroMQ follow the steps: | ||
``` | ||
git clone https://github.com/zeromq/libzmq.git | ||
cd libzmq | ||
mkdir build | ||
cd build | ||
cmake .. | ||
make | ||
sudo make install | ||
``` | ||
# To build czmq follow the steps: | ||
``` | ||
git clone https://github.com/zeromq/czmq.git | ||
cd czmq | ||
mkdir build | ||
cd build | ||
cmake .. | ||
make | ||
sudo make install | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
libzmq3-dev | ||
libcmzq-dev | ||
libssl-dev | ||
libnice-dev |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
czmq | ||
openssl | ||
pkgconf | ||
libnice |