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/ build/
llarpd
*.test *.test
*.bin *.bin
*.ninja
cmake_install.cmake
CMakeFiles
CMakeCache.txt
.ninja_log
.ninja_deps
callgrind.* callgrind.*
.gdb_history .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: Build requirements:
* CMake * CMake / gmake / ninja
* libsodium >= 1.0.14 * libsodium >= 1.0.14
* c++ 17 capable C++ compiler * c++ 17 capable C++ compiler
* c11 capable C compiler * c11 capable C compiler
Building: Building:
$ make
Building in another directory:
$ mkdir build $ mkdir build
$ cd build $ cd build
$ cmake .. $ cmake ..

Loading…
Cancel
Save