LspCpp
depends on the boost and rapidjson,utfcpp,uri and threadpool
-
On linux ,install boost
$ sudo apt-get install libboost-dev
On Mac,install boost on Mac
$ brew install boost
-
$ git submodule init $ git submodule update
-
Building with
CMake
$ mkdir _build
$ cd _build
$ cmake -DUri_BUILD_TESTS=OFF ..
$ make -j4
- Restore the submodules.
git submodule init git submodule update
- Open cmd or powershell and generate visual studio project with
CMake
.
mkdir _build
cd _build
cmake -DUri_BUILD_TESTS=OFF -DUri_USE_STATIC_CRT=OFF ..
-
"cmake -help" is useful if you are not familiar with cmake.
-
Build it with Visual Studio.
Some code from :cquery
MIT