Skip to content

A Language Server Protocol implementation in C++

License

Notifications You must be signed in to change notification settings

vectorgraphics/LspCpp

 
 

Repository files navigation

LspCpp

Dependencies

LspCpp depends on boost, rapidjson, utfcpp, uri.

Build

Linux / Mac

  1. On linux, install boost

       $ sudo apt-get install libboost-dev 

    On Mac, install boost on Mac

       $ brew install boost
  2. Building with CMake


$ mkdir _build
$ cd _build
$ cmake -DUri_BUILD_TESTS=OFF ..
$ make -j4

Windows

  1. 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 ..
  1. "cmake -help" is useful if you are not familiar with cmake.

  2. Build it with Visual Studio.

Reference

Some code from :cquery

Projects using LspCpp:

License

MIT

Example:

It's here

Development guide

For any merges into the master branch, ensure the C++ code complies with the clang-format standard. As of currently, the latest clang-format version offered in ubuntu 24.04 (18) is used, but this may change in the future as newer versions of clang-format is available for Ubuntu.

To check the current version of clang-format used, see the check-format-cpp workflow. It prints out the version used. Ensure the C++ code is compliant with that version of clang-format.

vcpkg.json is optionally provided for convenience. It is not required for compiling LspCpp.

About

A Language Server Protocol implementation in C++

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 88.7%
  • C 7.5%
  • CMake 3.8%