Skip to content

Commit 9e630d4

Browse files
committed
Add one more cmake tip
1 parent ef25794 commit 9e630d4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,15 @@ By virtue of being written in C++, this client works in several different platfo
2323
4. Run `make install`(if makefile generated) or open generated project (if project file generated) to build.
2424
5. Outputs is under `./build`, link with the all static libs under `./build/lib` and include headers under `./build/include` in your client code where you want to use it.
2525

26-
*If you're using boost without install,you can specify `boost include dir` and `boost lib dir` separately by:*
26+
* If you're using boost without install,you can specify `boost include dir` and `boost lib dir` separately by:
2727
```bash
2828
cmake
2929
-DBOOST_INCLUDE:STRING=<your boost include folder>
3030
-DBOOST_LIB:STRING=<your boost lib folder>
3131
-DBOOST_VER:STRING=<your boost version>
3232
./
3333
```
34+
* CMake didn't allow merging static libraries,but they're all copied to `./build/lib`, you can DIY if you like.
3435

3536
### Without CMake
3637
1. Install boost, see [Boost setup](#boost_setup) section.

0 commit comments

Comments
 (0)