aboutsummaryrefslogtreecommitdiffstats
path: root/README.org
diff options
context:
space:
mode:
Diffstat (limited to 'README.org')
-rw-r--r--README.org8
1 files changed, 6 insertions, 2 deletions
diff --git a/README.org b/README.org
index 40c8a94..2058b59 100644
--- a/README.org
+++ b/README.org
@@ -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