blob: 8d9a7b246327e9bafc5a6501de6f6a5cf71c3b3b (
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
./check_ck
#+END_SRC
|