https://github.com/igorcoding/circle-routes
Circle network routes evaluation utility
https://github.com/igorcoding/circle-routes
Last synced: 11 months ago
JSON representation
Circle network routes evaluation utility
- Host: GitHub
- URL: https://github.com/igorcoding/circle-routes
- Owner: igorcoding
- License: mit
- Created: 2015-03-21T19:37:16.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-04-10T08:01:22.000Z (almost 11 years ago)
- Last Synced: 2024-04-20T00:11:02.882Z (almost 2 years ago)
- Language: C++
- Size: 271 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# circle-routes
Circle network routes evaluation utility
## Dependencies
* ```circle_routes``` has no external dependencies
* Http Server: Poco v1.6.0 (```-lPocoFoundation``` ```-lPocoNet``` ```-lPocoUtil``` ```-lPocoJSON```)
* Command line utility: Boost 1.57 (```-lboost_system``` ```-lboost_program_options```)
## Build
In order to build under **Linux** just run the following commands:
```bash
mkdir build && cd build
cmake ..
make
```
To build under **Windows** you will need additional packages. Also Boost and Poco have to be built using mingw32 toolchain to mingw32 folder, fot instance, ```$HOME/mingw-install/```
```bash
apt-get install wine mingw32 mingw32-binutils mingw32-runtime
mkdir buildwin && cd buildwin
cmake -DCMAKE_TOOLCHAIN_FILE=../cmake/Toolchain-mingw32.cmake -DCMAKE_INSTALL_PREFIX=$HOME/mingw-install/ ..
```