There are two ways supported by the demo.
- You could reference third_party to link other library.
- And also reference module defined by ourself.
mkdir build
cd build
cmake ..
make
tips:
- How to build with debug and release?
- release
cd build && cmake -DCMAKE_BUILD_TYPE=Release ..
- debug
cd build && cmake -DCMAKE_BUILD_TYPE=Debug ..