summaryrefslogtreecommitdiff
path: root/graphics/asymptote/LspCpp/README.md
blob: 4c279f7f4aa6ef3f5f93d622ae52d0aebb251dfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# LspCpp

## Dependencies
`LspCpp` depends on the boost and rapidjson,utfcpp,and threadpool

## Build

### Linux
  1. Install boost
   ```shell
      $ sudo apt-get install libboost-dev 
   ``` 
 2. [Restore the submodules][4].
    ```shell
      $ git submodule init
      $ git submodule update
    ``` 
 3. Build it.
    ```shell
      $ make
    ``` 
### Windows
  1. Open project with Vistual Studio.
  2. [Restore packages][3] with Vistual Studio.
  3. [Restore the submodules][4].
     ```shell
      git submodule init
      git submodule update
     ``` 
  4. Build it with Vistual Studio.
 
## Reference
 Some code from :[cquery][1]

## Projects using LspCpp:
* [JCIDE](https://www.javacardos.com/tools)
* [LPG-language-server](https://github.com/kuafuwang/LPG-language-server)
## License
   MIT
   
##  Example:
[It's here](https://github.com/kuafuwang/LspCpp/tree/master/example)


[1]: https://github.com/cquery-project/cquery "cquery:"
[2]: https://www.javacardos.com/tools "JcKit:"
[3]: https://docs.microsoft.com/en-us/nuget/consume-packages/package-restore "Package Restore"
[4]: https://git-scm.com/book/en/v2/Git-Tools-Submodules "Git-Tools-Submodules"