convert mapjson.py to mapjson.cpp

This commit is contained in:
garak
2019-02-02 14:22:41 -05:00
committed by huderlem
parent 29d6221935
commit 82abc164dc
8 changed files with 1592 additions and 390 deletions

15
tools/mapjson/Makefile Normal file
View File

@@ -0,0 +1,15 @@
CXX := g++
CXXFLAGS := -Wall -std=c++11 -O2
SRCS := json11.cpp mapjson.cpp
HEADERS := mapjson.h
.PHONY: clean
mapjson: $(SRCS) $(HEADERS)
$(CXX) $(CXXFLAGS) $(SRCS) -o $@ $(LDFLAGS)
clean:
$(RM) mapjson mapjson.exe