equal
deleted
inserted
replaced
16 |
16 |
17 1. Configure: |
17 1. Configure: |
18 $ cmake . |
18 $ cmake . |
19 or |
19 or |
20 $ cmake -DCMAKE_BUILD_TYPE="Release" -DCMAKE_INSTALL_PREFIX="install_prefix" \ |
20 $ cmake -DCMAKE_BUILD_TYPE="Release" -DCMAKE_INSTALL_PREFIX="install_prefix" \ |
21 -DDATA_INSTALL_DIR="data_dir" . |
21 -DDATA_INSTALL_DIR="data_dir" -DNOSERVER=1 . |
22 |
22 |
23 add -DWITH_SERVER=1 to compile net server; if you have Qt installed but it is |
23 add -DNOSERVER=0 to compile net server; if you have Qt installed but it is |
24 not found you can set it up with -DQT_QMAKE_EXECUTABLE="path_to_qmake" |
24 not found you can set it up with -DQT_QMAKE_EXECUTABLE="path_to_qmake" |
25 |
25 |
26 2. Compile: |
26 2. Compile: |
27 $ make |
27 $ make |
28 |
28 |