2018-02-01 21:20:26 +00:00
|
|
|
SRCDIR = ../single_include
|
2016-07-18 14:22:10 +00:00
|
|
|
SED:=$(shell command -v gsed || which sed)
|
2015-06-21 19:24:03 +00:00
|
|
|
|
2015-07-08 14:55:29 +00:00
|
|
|
all: doxygen
|
|
|
|
|
2015-06-21 19:24:03 +00:00
|
|
|
|
|
|
|
##########################################################################
|
|
|
|
# example files
|
|
|
|
##########################################################################
|
|
|
|
|
|
|
|
# where are the example cpp files
|
|
|
|
EXAMPLES = $(wildcard examples/*.cpp)
|
|
|
|
|
|
|
|
# create output from a stand-alone example file
|
|
|
|
%.output: %.cpp
|
|
|
|
make $(<:.cpp=) CPPFLAGS="-I $(SRCDIR)" CXXFLAGS="-std=c++11"
|
|
|
|
./$(<:.cpp=) > $@
|
|
|
|
rm $(<:.cpp=)
|
|
|
|
|
|
|
|
# compare created output with current output of the example files
|
|
|
|
%.test: %.cpp
|
|
|
|
make $(<:.cpp=) CPPFLAGS="-I $(SRCDIR)" CXXFLAGS="-std=c++11"
|
|
|
|
./$(<:.cpp=) > $@
|
|
|
|
diff $@ $(<:.cpp=.output)
|
|
|
|
rm $(<:.cpp=) $@
|
|
|
|
|
2015-06-29 21:02:41 +00:00
|
|
|
# create links to try the code online
|
|
|
|
%.link: %.cpp
|
|
|
|
rm -fr tmp
|
|
|
|
mkdir tmp
|
2018-02-01 21:20:26 +00:00
|
|
|
cp -r $(SRCDIR)/nlohmann tmp
|
2018-02-11 13:46:15 +00:00
|
|
|
python2 scripts/send_to_wandbox.py tmp $< > $@.tmp
|
2015-06-29 21:02:41 +00:00
|
|
|
/bin/echo -n "<a target=\"_blank\" href=\"`cat $@.tmp`\"><b>online</b></a>" > $@
|
|
|
|
rm -fr tmp $@.tmp
|
|
|
|
|
2015-06-21 19:24:03 +00:00
|
|
|
# create output from all stand-alone example files
|
|
|
|
create_output: $(EXAMPLES:.cpp=.output)
|
|
|
|
|
2015-06-29 21:02:41 +00:00
|
|
|
create_links: $(EXAMPLES:.cpp=.link)
|
|
|
|
|
2015-06-21 19:24:03 +00:00
|
|
|
# check output of all stand-alone example files
|
|
|
|
check_output: $(EXAMPLES:.cpp=.test)
|
|
|
|
|
|
|
|
|
2016-05-29 12:06:43 +00:00
|
|
|
clean:
|
2020-07-25 20:04:42 +00:00
|
|
|
rm -fr me.nlohmann.json.docset html xml $(EXAMPLES:.cpp=)
|
2016-05-29 12:06:43 +00:00
|
|
|
|
|
|
|
|
2015-06-21 19:24:03 +00:00
|
|
|
##########################################################################
|
|
|
|
# Doxygen HTML documentation
|
|
|
|
##########################################################################
|
|
|
|
|
|
|
|
# create Doxygen documentation
|
2015-06-29 22:12:18 +00:00
|
|
|
doxygen: create_output create_links
|
2015-06-21 19:24:03 +00:00
|
|
|
doxygen
|
2017-02-21 18:11:34 +00:00
|
|
|
$(SED) -i 's@< ObjectType, ArrayType, StringType, BooleanType, NumberIntegerType, NumberFloatType, AllocatorType, JSONSerializer >@@g' html/*.html
|
|
|
|
$(SED) -i 's@< ObjectType, ArrayType, StringType, BooleanType, NumberIntegerType, NumberFloatType, AllocatorType JSONSerializer >@@g' html/*.html
|
|
|
|
$(SED) -i 's@< ObjectType, ArrayType, StringType, BooleanType, NumberIntegerType, NumberUnsignedType, NumberFloatType, AllocatorType, JSONSerializer >@@g' html/*.html
|
|
|
|
$(SED) -i 's@< ObjectType, ArrayType, StringType, BooleanType, NumberIntegerType, NumberUnsignedType, NumberFloatType, AllocatorType, JSONSerializer >@@g' html/*.html
|
|
|
|
$(SED) -i 's@< ObjectType, ArrayType, StringType, BooleanType, NumberIntegerType, NumberUnsignedType, NumberFloatType, AllocatorType JSONSerializer >@@g' html/*.html
|
2017-03-01 20:28:44 +00:00
|
|
|
$(SED) -i 's@template<template< typename U, typename V, typename... Args > class ObjectType = std::map, template< typename U, typename... Args > class ArrayType = std::vector, class StringType = std::string, class BooleanType = bool, class NumberIntegerType = std::int64_t, class NumberUnsignedType = std::uint64_t, class NumberFloatType = double, template< typename U > class AllocatorType = std::allocator, template< typename T, typename SFINAE=void > class JSONSerializer = adl_serializer>@@g' html/*.html
|
2017-03-08 22:12:13 +00:00
|
|
|
$(SED) -i 's@< ObjectType, ArrayType, StringType, BooleanType, NumberIntegerType, NumberUnsignedType, NumberFloatType, AllocatorType, JSONSerializer >@@g' html/*.html
|
|
|
|
$(SED) -i 's@< ObjectType, ArrayType, StringType, BooleanType, NumberIntegerType, NumberUnsignedType, NumberFloatType, AllocatorType, JSONSerializer >@@g' html/*.html
|
2019-07-02 19:15:52 +00:00
|
|
|
$(SED) -i 's@JSON_HEDLEY_RETURNS_NON_NULL@@g' html/*.html
|
|
|
|
$(SED) -i 's@JSON_HEDLEY_WARN_UNUSED_RESULT@@g' html/*.html
|
2015-06-21 19:24:03 +00:00
|
|
|
|
2015-07-14 19:21:08 +00:00
|
|
|
upload: clean doxygen check_output
|
2017-12-17 09:20:30 +00:00
|
|
|
scripts/git-update-ghpages nlohmann/json html
|
2015-06-21 19:51:23 +00:00
|
|
|
rm -fr html
|
|
|
|
open http://nlohmann.github.io/json/
|
|
|
|
|
2015-06-21 19:24:03 +00:00
|
|
|
|
|
|
|
##########################################################################
|
|
|
|
# docset
|
|
|
|
##########################################################################
|
|
|
|
|
|
|
|
# create docset for Dash
|
|
|
|
docset: create_output
|
|
|
|
cp Doxyfile Doxyfile_docset
|
2016-07-09 18:02:41 +00:00
|
|
|
$(SED) -i 's/DISABLE_INDEX = NO/DISABLE_INDEX = YES/' Doxyfile_docset
|
|
|
|
$(SED) -i 's/SEARCHENGINE = YES/SEARCHENGINE = NO/' Doxyfile_docset
|
|
|
|
$(SED) -i 's@HTML_EXTRA_STYLESHEET = css/mylayout.css@HTML_EXTRA_STYLESHEET = css/mylayout_docset.css@' Doxyfile_docset
|
2015-06-21 19:24:03 +00:00
|
|
|
rm -fr html *.docset
|
|
|
|
doxygen Doxyfile_docset
|
2016-07-09 18:02:41 +00:00
|
|
|
$(SED) -i 's@< ObjectType, ArrayType, StringType, BooleanType, NumberIntegerType, NumberFloatType, AllocatorType >@@g' html/*.html
|
|
|
|
$(SED) -i 's@< ObjectType, ArrayType, StringType, BooleanType, NumberIntegerType, NumberFloatType, AllocatorType >@@g' html/*.html
|
2015-06-21 19:24:03 +00:00
|
|
|
make -C html
|
|
|
|
mv html/*.docset .
|
2016-07-09 18:02:41 +00:00
|
|
|
$(SED) -i 's@<string>doxygen</string>@<string>json</string>@' me.nlohmann.json.docset/Contents/Info.plist
|
2015-06-21 19:24:03 +00:00
|
|
|
rm -fr Doxyfile_docset html
|