Skip to content

Commit fd9dfaf

Browse files
committed
README.md
1 parent d6ad195 commit fd9dfaf

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

README.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
[![License](http://img.shields.io/:license-mit-blue.svg)](http://doge.mit-license.org)
2+
3+
i3ipc++
4+
=======
5+
An implementation of i3 IPC in C++11.
6+
7+
## Using
8+
Yet the only way of using is to add this repo as a submodule
9+
10+
```bash
11+
git submodule add https://github.com/drmgc/i3ipcpp.git ./i3ipc++/
12+
```
13+
14+
Then just type this in your `CMakeLists.txt`:
15+
16+
```cmake
17+
...
18+
add_subdirectory(i3ipc++)
19+
20+
include_directories(${I3IPCpp_INCLUDE_DIRS})
21+
link_directories(${I3IPCpp_LIBRARY_DIRS)
22+
...
23+
```
24+
25+
And then just link:
26+
27+
```cmake
28+
...
29+
target_link_libraries(someapp ${I3IPCpp_LIBRARIES})
30+
...
31+
```
32+
33+
## Version i3 support
34+
It is written according to the *current* specification, so some of new features in IPC can be implemented. If there is some of them, please notice at issues page.
35+
36+
## Examples
37+
There is few examples in `examples/` directory.
38+
39+
## Documentation
40+
The latest documentation you can find [**here**](http://drmgc.github.io/docs/api-ref/i3ipc++/latest/)

0 commit comments

Comments
 (0)