aboutsummaryrefslogtreecommitdiffstats
path: root/README.org
blob: e0555a7c744d33dbad9403f49151ec794d461c0d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
* ck
** The Config Keeper

* build it
** requirements
- gcc
- cmake
- sqlite3-dev

** make
#+BEGIN_SRC sh
# clone the repo
> cd ~/code; git clone https://github.com/gramanas/ck
# make a build directory and enter it
> mkdir ~/ck_build; cd ~/ck_build;
# run cmake
> cmake ~/code/ck
# run make
> make
#+END_SRC

** run the tests
Simply go to the build dir and type.

*WARNING!* This will destroy any configurations or databases
you might have. (for now)
#+BEGIN_SRC sh
./test_ck
#+END_SRC