diff options
Diffstat (limited to 'INSTALL')
-rw-r--r-- | INSTALL | 33 |
1 files changed, 33 insertions, 0 deletions
@@ -0,0 +1,33 @@ +1. make the build directory + + ex) + + $ mkdir build + + +2. change the working directory to the build directory + + ex) + + $ cd build + + +3. run 'cmake' + + $ cmake ${SOURCE_DIR} - DCMAKE_INSTALL_PREFIX=/opt/apps/w-ciss + + ex) + + $ cmake .. -DCMAKE_INSTALL_PREFIX=/opt/apps/w-ciss + + or + + $ cmake .. + + +4. make & make install + + ex) + + $ make -j 2 && make install + |