ruben2020 / codequery

A code-understanding, code-browsing or code-search tool. This is a tool to index, then query or search C, C++, Java, Python, Ruby, Go and Javascript source code. It builds upon the databases of cscope and ctags, and provides a nice GUI tool.
https://ruben2020.github.io/codequery/
Mozilla Public License 2.0
680 stars 86 forks source link

How to install without gui #62

Closed tenfyzhong closed 7 years ago

tenfyzhong commented 7 years ago

I use it with vim-codequery only. I no need gui. how can I install it without gui?

johnzeng commented 7 years ago

+1

ruben2020 commented 7 years ago

Hi @tenfyzhong @johnzeng I just added this feature, on your request.

Please get the latest commit from the master branch and build it using the following command: cmake -G "Unix Makefiles" -DNO_GUI=ON ..

That is to say, follow the all the instructions in the INSTALL_LINUX.md file, but add -DNO_GUI=ON to the CMake options.

Please let me know if that meets your expectation and works for you. Thanks.

ruben2020 commented 7 years ago

Added to INSTALL_LINUX.md