add makefile back but using cmake/ninja

pull/1/head
Jeff Becker 6 years ago
parent 69498bd104
commit 0806120c06
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05

8
.gitignore vendored

@ -8,8 +8,16 @@
build/
llarpd
*.test
*.bin
*.ninja
cmake_install.cmake
CMakeFiles
CMakeCache.txt
.ninja_log
.ninja_deps
callgrind.*
.gdb_history

@ -0,0 +1,3 @@
all:
cmake -GNinja
ninja

@ -13,13 +13,18 @@ This project is "secret" don't tell anyone about it yet. :x
Build requirements:
* CMake
* CMake / gmake / ninja
* libsodium >= 1.0.14
* c++ 17 capable C++ compiler
* c11 capable C compiler
Building:
$ make
Building in another directory:
$ mkdir build
$ cd build
$ cmake ..

Loading…
Cancel
Save