| Version 8 (modified by mickem, 21 months ago) (diff) |
|---|
Building nsclient++ on linux
The quick version for Debian :)
- Install some packages (including cmake, boost, and what not) I will update this later on.
sudo apt-get install -y subversion-tools # Subversion sudo apt-get install -y build-essential # Normal build tools sudo apt-get install -y cmake # cmake build tool sudo apt-get install -y python # Python is used by the build tool sudo apt-get install -y libssl-dev libboost1.42-all-dev python-dev libprotobuf-dev sudo apt-get install -y protobuf-compiler# Google protocol buffers compiler # A long list of libraries used by the program (some optional) # ... more to come - Create folder
mkdir nscp cd nscp
- Grab the source from subversion
svn co http://svn.nsclient.org/nscp/trunk
- Create build folder
mkdir build cd build
- Configure the project using cmake (repeat this a few times)
cmake ../trunk
- Build using make:
make
- Test
nscp --test
Will add more information here later on...








