diff options
Diffstat (limited to 'README.org')
-rw-r--r-- | README.org | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -17,20 +17,24 @@ #+END_SRC ** make +Use =-DCMAKE_INSTALL_PREFIX= when running cmake to change the install path. #+BEGIN_SRC sh # clone the repo > cd ~/code; git clone https://gitlab.com/grm-grm/ck # make a build directory and enter it > mkdir ~/ck_build; cd ~/ck_build; # run cmake - > cmake ~/code/ck + > cmake ~/code/ck # run make > make + # install it + > make install # run ck - > ./ck + > ck #+END_SRC * for devs +Please be [[https://www.gnu.org/philosophy/kind-communication.html][kind]] to each other. ** CMake options cmake accepts the following options: #+BEGIN_SRC cmake |