irrnet/README.md

17 lines
758 B
Markdown
Raw Permalink Normal View History

2022-12-13 01:32:47 +01:00
# irrnet
2018-03-11 05:07:10 +01:00
2022-12-13 01:32:47 +01:00
an updated version of the [irrNetLite](http://irrlicht.sourceforge.net/forum/viewtopic.php?f=6&t=22658) networking library compiled against recent versions of [enet](https://github.com/lsalzman/enet) and [zlib](https://github.com/madler/zlib).
2018-03-11 05:07:10 +01:00
2022-12-13 01:32:47 +01:00
## building irrnet
2022-12-13 01:32:47 +01:00
irrnet now uses an easy to use cmake configuration. use it to either build the lib or rather integrate it into your project's cmake setup (recommended).
2018-03-11 05:07:10 +01:00
2022-12-13 01:32:47 +01:00
quick steps:
2018-03-11 05:07:10 +01:00
2022-12-13 01:32:47 +01:00
1. clone the repository and pull the submodules: `git clone --recurse-submodules <path to repo>`
1. use `cmake` or `cmake-gui` to generate makefiles or projects for your favorite ide. as for the first just do `cmake -B build`
1. on successful generation, cd into the just created `build` folder
1. `make` irrnet
2018-03-11 05:07:10 +01:00