We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bdc2b7 commit 7c4eac7Copy full SHA for 7c4eac7
src/cpp/.gitignore
@@ -0,0 +1 @@
1
+/ext/
src/cpp/Makefile
@@ -3,6 +3,13 @@ ROOT := ../..
3
4
default: help
5
6
-test: test-tap
+test: ext/nlohmann/json.hpp test-tap
7
+
8
+ext/nlohmann/json.hpp:
9
+ mkdir -p ext/nlohmann
10
+ curl -s https://raw.githubusercontent.com/nlohmann/json/develop/single_include/nlohmann/json.hpp > $@
11
12
+clean::
13
+ rm -fr ext
14
15
include ../../.makefile/runtime.mk
0 commit comments