Commit 0962073d75596c7555ef64a6762e0d993fec09ce
1 parent
a952e350
Exists in
master
and in
3 other branches
Add README file
Showing
1 changed file
with
11 additions
and
0 deletions
Show diff stats
... | ... | @@ -0,0 +1,11 @@ |
1 | +1. Make the build directory : | |
2 | +> cmake -E make_directory build | |
3 | + | |
4 | +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 : | |
5 | +> cmake -E chdir build cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/home/benjamin/DDClient .. | |
6 | + | |
7 | +3. Build DDClient : | |
8 | +> cmake --build build | |
9 | + | |
10 | +4. Install DDClient : | |
11 | +> make -C build install VERBOSE=1 | ... | ... |