Blame view

README 412 Bytes
0962073d   Benjamin Renard   Add README file
1
2
3
4
1. Make the build directory :
> cmake -E make_directory build

2. Configure the build. Set CMAKE_BUILD_TYPE to Debug or Release to configure the build type. Set CMAKE_INSTALL_PREFIX to configure the install directory :
d643df12   Myriam Bouchemit   installation dans...
5
> cmake -E chdir build cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/opt/local ..
0962073d   Benjamin Renard   Add README file
6
7
8
9
10
11

3. Build DDClient :
> cmake --build build

4. Install DDClient :
> make -C build install VERBOSE=1