🔧 overworked maintaner targets
This commit is contained in:
parent
d79c16801a
commit
191aa0fd6f
3 changed files with 146 additions and 78 deletions
|
@ -23,8 +23,7 @@ option(JSON_MultipleHeaders "Use non-amalgamated version of the library." OFF)
|
||||||
## CONFIGURATION
|
## CONFIGURATION
|
||||||
##
|
##
|
||||||
set(NLOHMANN_JSON_TARGET_NAME ${PROJECT_NAME})
|
set(NLOHMANN_JSON_TARGET_NAME ${PROJECT_NAME})
|
||||||
set(NLOHMANN_JSON_CONFIG_INSTALL_DIR "lib/cmake/${PROJECT_NAME}"
|
set(NLOHMANN_JSON_CONFIG_INSTALL_DIR "lib/cmake/${PROJECT_NAME}" CACHE INTERNAL "")
|
||||||
CACHE INTERNAL "")
|
|
||||||
set(NLOHMANN_JSON_INCLUDE_INSTALL_DIR "include")
|
set(NLOHMANN_JSON_INCLUDE_INSTALL_DIR "include")
|
||||||
set(NLOHMANN_JSON_TARGETS_EXPORT_NAME "${PROJECT_NAME}Targets")
|
set(NLOHMANN_JSON_TARGETS_EXPORT_NAME "${PROJECT_NAME}Targets")
|
||||||
set(NLOHMANN_JSON_CMAKE_CONFIG_TEMPLATE "cmake/config.cmake.in")
|
set(NLOHMANN_JSON_CMAKE_CONFIG_TEMPLATE "cmake/config.cmake.in")
|
||||||
|
|
215
Makefile
215
Makefile
|
@ -1,44 +1,31 @@
|
||||||
.PHONY: pretty clean ChangeLog.md
|
.PHONY: pretty clean ChangeLog.md release
|
||||||
|
|
||||||
SRCS = include/nlohmann/json.hpp \
|
##########################################################################
|
||||||
include/nlohmann/json_fwd.hpp \
|
# configuration
|
||||||
include/nlohmann/adl_serializer.hpp \
|
##########################################################################
|
||||||
include/nlohmann/detail/conversions/from_json.hpp \
|
|
||||||
include/nlohmann/detail/conversions/to_chars.hpp \
|
|
||||||
include/nlohmann/detail/conversions/to_json.hpp \
|
|
||||||
include/nlohmann/detail/exceptions.hpp \
|
|
||||||
include/nlohmann/detail/input/binary_reader.hpp \
|
|
||||||
include/nlohmann/detail/input/input_adapters.hpp \
|
|
||||||
include/nlohmann/detail/input/json_sax.hpp \
|
|
||||||
include/nlohmann/detail/input/lexer.hpp \
|
|
||||||
include/nlohmann/detail/input/parser.hpp \
|
|
||||||
include/nlohmann/detail/input/position_t.hpp \
|
|
||||||
include/nlohmann/detail/iterators/internal_iterator.hpp \
|
|
||||||
include/nlohmann/detail/iterators/iter_impl.hpp \
|
|
||||||
include/nlohmann/detail/iterators/iteration_proxy.hpp \
|
|
||||||
include/nlohmann/detail/iterators/json_reverse_iterator.hpp \
|
|
||||||
include/nlohmann/detail/iterators/primitive_iterator.hpp \
|
|
||||||
include/nlohmann/detail/json_pointer.hpp \
|
|
||||||
include/nlohmann/detail/json_ref.hpp \
|
|
||||||
include/nlohmann/detail/macro_scope.hpp \
|
|
||||||
include/nlohmann/detail/macro_unscope.hpp \
|
|
||||||
include/nlohmann/detail/meta/cpp_future.hpp \
|
|
||||||
include/nlohmann/detail/meta/detected.hpp \
|
|
||||||
include/nlohmann/detail/meta/type_traits.hpp \
|
|
||||||
include/nlohmann/detail/meta/void_t.hpp \
|
|
||||||
include/nlohmann/detail/output/binary_writer.hpp \
|
|
||||||
include/nlohmann/detail/output/output_adapters.hpp \
|
|
||||||
include/nlohmann/detail/output/serializer.hpp \
|
|
||||||
include/nlohmann/detail/value_t.hpp
|
|
||||||
|
|
||||||
UNAME = $(shell uname)
|
|
||||||
CXX=clang++
|
|
||||||
|
|
||||||
AMALGAMATED_FILE=single_include/nlohmann/json.hpp
|
|
||||||
|
|
||||||
# directory to recent compiler binaries
|
# directory to recent compiler binaries
|
||||||
COMPILER_DIR=/Users/niels/Documents/projects/compilers/local/bin
|
COMPILER_DIR=/Users/niels/Documents/projects/compilers/local/bin
|
||||||
|
|
||||||
|
# find GNU sed to use `-i` parameter
|
||||||
|
SED:=$(shell command -v gsed || which sed)
|
||||||
|
|
||||||
|
|
||||||
|
##########################################################################
|
||||||
|
# source files
|
||||||
|
##########################################################################
|
||||||
|
|
||||||
|
# the list of sources in the include folder
|
||||||
|
SRCS=$(shell find include -type f | sort)
|
||||||
|
|
||||||
|
# the single header (amalgamated from the source files)
|
||||||
|
AMALGAMATED_FILE=single_include/nlohmann/json.hpp
|
||||||
|
|
||||||
|
|
||||||
|
##########################################################################
|
||||||
|
# documentation of the Makefile's targets
|
||||||
|
##########################################################################
|
||||||
|
|
||||||
# main target
|
# main target
|
||||||
all:
|
all:
|
||||||
@echo "amalgamate - amalgamate file single_include/nlohmann/json.hpp from the include/nlohmann sources"
|
@echo "amalgamate - amalgamate file single_include/nlohmann/json.hpp from the include/nlohmann sources"
|
||||||
|
@ -64,6 +51,7 @@ all:
|
||||||
@echo "pretty - beautify code with Artistic Style"
|
@echo "pretty - beautify code with Artistic Style"
|
||||||
@echo "run_benchmarks - build and run benchmarks"
|
@echo "run_benchmarks - build and run benchmarks"
|
||||||
|
|
||||||
|
|
||||||
##########################################################################
|
##########################################################################
|
||||||
# unit tests
|
# unit tests
|
||||||
##########################################################################
|
##########################################################################
|
||||||
|
@ -76,25 +64,19 @@ json_unit:
|
||||||
check:
|
check:
|
||||||
$(MAKE) check -C test
|
$(MAKE) check -C test
|
||||||
|
|
||||||
|
# run unit tests and skip expensive tests
|
||||||
check-fast:
|
check-fast:
|
||||||
$(MAKE) check -C test TEST_PATTERN=""
|
$(MAKE) check -C test TEST_PATTERN=""
|
||||||
|
|
||||||
# clean up
|
|
||||||
clean:
|
|
||||||
rm -fr json_unit json_benchmarks fuzz fuzz-testing *.dSYM test/*.dSYM
|
|
||||||
rm -fr benchmarks/files/numbers/*.json
|
|
||||||
rm -fr build_coverage build_benchmarks
|
|
||||||
$(MAKE) clean -Cdoc
|
|
||||||
$(MAKE) clean -Ctest
|
|
||||||
|
|
||||||
|
|
||||||
##########################################################################
|
##########################################################################
|
||||||
# coverage
|
# coverage
|
||||||
##########################################################################
|
##########################################################################
|
||||||
|
|
||||||
coverage:
|
coverage:
|
||||||
|
rm -fr build_coverage
|
||||||
mkdir build_coverage
|
mkdir build_coverage
|
||||||
cd build_coverage ; CXX=g++-7 cmake .. -GNinja -DJSON_Coverage=ON -DJSON_MultipleHeaders=ON
|
cd build_coverage ; CXX=$(COMPILER_DIR)/g++ cmake .. -GNinja -DJSON_Coverage=ON -DJSON_MultipleHeaders=ON
|
||||||
cd build_coverage ; ninja
|
cd build_coverage ; ninja
|
||||||
cd build_coverage ; ctest -E '.*_default' -j10
|
cd build_coverage ; ctest -E '.*_default' -j10
|
||||||
cd build_coverage ; ninja lcov_html
|
cd build_coverage ; ninja lcov_html
|
||||||
|
@ -372,9 +354,10 @@ pedantic_gcc:
|
||||||
##########################################################################
|
##########################################################################
|
||||||
|
|
||||||
run_benchmarks:
|
run_benchmarks:
|
||||||
|
rm -fr build_benchmarks
|
||||||
mkdir build_benchmarks
|
mkdir build_benchmarks
|
||||||
cd build_benchmarks ; cmake ../benchmarks
|
cd build_benchmarks ; cmake ../benchmarks -GNinja -DCMAKE_BUILD_TYPE=Release
|
||||||
cd build_benchmarks ; make
|
cd build_benchmarks ; ninja
|
||||||
cd build_benchmarks ; ./json_benchmarks
|
cd build_benchmarks ; ./json_benchmarks
|
||||||
|
|
||||||
##########################################################################
|
##########################################################################
|
||||||
|
@ -436,28 +419,39 @@ fuzzing-stop:
|
||||||
-killall fuzzer
|
-killall fuzzer
|
||||||
-killall afl-fuzz
|
-killall afl-fuzz
|
||||||
|
|
||||||
|
|
||||||
##########################################################################
|
##########################################################################
|
||||||
# static analyzer
|
# Static analysis
|
||||||
##########################################################################
|
##########################################################################
|
||||||
|
|
||||||
# call cppcheck on the main header file
|
# call cppcheck <http://cppcheck.sourceforge.net>
|
||||||
|
# Note: this target is called by Travis
|
||||||
cppcheck:
|
cppcheck:
|
||||||
cppcheck --enable=warning --inline-suppr --inconclusive --force --std=c++11 $(SRCS) --error-exitcode=1
|
cppcheck --enable=warning --inline-suppr --inconclusive --force --std=c++11 $(SRCS) --error-exitcode=1
|
||||||
|
|
||||||
# compile and check with Clang Static Analyzer
|
# call Clang Static Analyzer <https://clang-analyzer.llvm.org>
|
||||||
clang_analyze:
|
clang_analyze:
|
||||||
rm -fr clang_analyze_build
|
rm -fr clang_analyze_build
|
||||||
mkdir clang_analyze_build
|
mkdir clang_analyze_build
|
||||||
cd clang_analyze_build ; CCC_CXX=$(COMPILER_DIR)/clang++ CXX=$(COMPILER_DIR)/clang++ $(COMPILER_DIR)/scan-build cmake .. -GNinja
|
cd clang_analyze_build ; CCC_CXX=$(COMPILER_DIR)/clang++ CXX=$(COMPILER_DIR)/clang++ $(COMPILER_DIR)/scan-build cmake .. -GNinja
|
||||||
cd clang_analyze_build ; $(COMPILER_DIR)/scan-build -enable-checker alpha.core.BoolAssignment,alpha.core.CallAndMessageUnInitRefArg,alpha.core.CastSize,alpha.core.CastToStruct,alpha.core.Conversion,alpha.core.DynamicTypeChecker,alpha.core.FixedAddr,alpha.core.PointerArithm,alpha.core.PointerSub,alpha.core.SizeofPtr,alpha.core.StackAddressAsyncEscape,alpha.core.TestAfterDivZero,alpha.deadcode.UnreachableCode,core.builtin.BuiltinFunctions,core.builtin.NoReturnFunctions,core.CallAndMessage,core.DivideZero,core.DynamicTypePropagation,core.NonnilStringConstants,core.NonNullParamChecker,core.NullDereference,core.StackAddressEscape,core.UndefinedBinaryOperatorResult,core.uninitialized.ArraySubscript,core.uninitialized.Assign,core.uninitialized.Branch,core.uninitialized.CapturedBlockVariable,core.uninitialized.UndefReturn,core.VLASize,cplusplus.InnerPointer,cplusplus.Move,cplusplus.NewDelete,cplusplus.NewDeleteLeaks,cplusplus.SelfAssignment,deadcode.DeadStores,nullability.NullableDereferenced,nullability.NullablePassedToNonnull,nullability.NullableReturnedFromNonnull,nullability.NullPassedToNonnull,nullability.NullReturnedFromNonnull --use-c++=$(COMPILER_DIR)/clang++ --view -analyze-headers -o clang_analyze_build/report.html ninja
|
cd clang_analyze_build ; \
|
||||||
|
$(COMPILER_DIR)/scan-build \
|
||||||
|
-enable-checker alpha.core.BoolAssignment,alpha.core.CallAndMessageUnInitRefArg,alpha.core.CastSize,alpha.core.CastToStruct,alpha.core.Conversion,alpha.core.DynamicTypeChecker,alpha.core.FixedAddr,alpha.core.PointerArithm,alpha.core.PointerSub,alpha.core.SizeofPtr,alpha.core.StackAddressAsyncEscape,alpha.core.TestAfterDivZero,alpha.deadcode.UnreachableCode,core.builtin.BuiltinFunctions,core.builtin.NoReturnFunctions,core.CallAndMessage,core.DivideZero,core.DynamicTypePropagation,core.NonnilStringConstants,core.NonNullParamChecker,core.NullDereference,core.StackAddressEscape,core.UndefinedBinaryOperatorResult,core.uninitialized.ArraySubscript,core.uninitialized.Assign,core.uninitialized.Branch,core.uninitialized.CapturedBlockVariable,core.uninitialized.UndefReturn,core.VLASize,cplusplus.InnerPointer,cplusplus.Move,cplusplus.NewDelete,cplusplus.NewDeleteLeaks,cplusplus.SelfAssignment,deadcode.DeadStores,nullability.NullableDereferenced,nullability.NullablePassedToNonnull,nullability.NullableReturnedFromNonnull,nullability.NullPassedToNonnull,nullability.NullReturnedFromNonnull \
|
||||||
|
--use-c++=$(COMPILER_DIR)/clang++ -analyze-headers -o report ninja
|
||||||
|
open clang_analyze_build/report/*/index.html
|
||||||
|
|
||||||
# call cpplint (some errors expected due to false positives)
|
# call cpplint <https://github.com/cpplint/cpplint>
|
||||||
|
# Note: some errors expected due to false positives
|
||||||
cpplint:
|
cpplint:
|
||||||
third_party/cpplint/cpplint.py --filter=-whitespace,-legal,-readability/alt_tokens,-runtime/references,-runtime/explicit --quiet --recursive include
|
third_party/cpplint/cpplint.py \
|
||||||
|
--filter=-whitespace,-legal,-readability/alt_tokens,-runtime/references,-runtime/explicit \
|
||||||
|
--quiet --recursive $(SRCS)
|
||||||
|
|
||||||
|
# call Clang-Tidy <https://clang.llvm.org/extra/clang-tidy/>
|
||||||
clang_tidy:
|
clang_tidy:
|
||||||
$(COMPILER_DIR)/clang-tidy $(SRCS) -- -Iinclude -std=c++11
|
$(COMPILER_DIR)/clang-tidy $(SRCS) -- -Iinclude -std=c++11
|
||||||
|
|
||||||
|
# call PVS-Studio Analyzer <https://www.viva64.com/en/pvs-studio/>
|
||||||
pvs_studio:
|
pvs_studio:
|
||||||
rm -fr pvs_studio_build
|
rm -fr pvs_studio_build
|
||||||
mkdir pvs_studio_build
|
mkdir pvs_studio_build
|
||||||
|
@ -466,45 +460,70 @@ pvs_studio:
|
||||||
cd pvs_studio_build ; plog-converter -a'GA:1,2;64:1;CS' -t fullhtml PVS-Studio.log -o pvs
|
cd pvs_studio_build ; plog-converter -a'GA:1,2;64:1;CS' -t fullhtml PVS-Studio.log -o pvs
|
||||||
open pvs_studio_build/pvs/index.html
|
open pvs_studio_build/pvs/index.html
|
||||||
|
|
||||||
|
# call Infer <https://fbinfer.com> static analyzer
|
||||||
infer:
|
infer:
|
||||||
rm -fr infer_build
|
rm -fr infer_build
|
||||||
mkdir infer_build
|
mkdir infer_build
|
||||||
cd infer_build ; infer compile -- cmake .. ; infer run -- make -j 4
|
cd infer_build ; infer compile -- cmake .. ; infer run -- make -j 4
|
||||||
|
|
||||||
|
# call OCLint <http://oclint.org> static analyzer
|
||||||
oclint:
|
oclint:
|
||||||
oclint $(SRCS) -report-type html -enable-global-analysis -o oclint_report.html -max-priority-1=10000 -max-priority-2=10000 -max-priority-3=10000 -- -std=c++11 -Iinclude
|
oclint $(SRCS) -report-type html -enable-global-analysis -o oclint_report.html -max-priority-1=10000 -max-priority-2=10000 -max-priority-3=10000 -- -std=c++11 -Iinclude
|
||||||
open oclint_report.html
|
open oclint_report.html
|
||||||
|
|
||||||
|
# execute the test suite with Clang sanitizers (address and undefined behavior)
|
||||||
|
clang_sanitize:
|
||||||
|
rm -fr clang_sanitize_build
|
||||||
|
mkdir clang_sanitize_build
|
||||||
|
cd clang_sanitize_build ; CXX=$(COMPILER_DIR)/clang++ cmake .. -DJSON_Sanitizer=On -DJSON_MultipleHeaders=ON -GNinja
|
||||||
|
cd clang_sanitize_build ; ninja
|
||||||
|
cd clang_sanitize_build ; ctest -E '.*_default' -j10
|
||||||
|
|
||||||
|
|
||||||
##########################################################################
|
##########################################################################
|
||||||
# maintainer targets
|
# Code format and source amalgamation
|
||||||
##########################################################################
|
##########################################################################
|
||||||
|
|
||||||
# pretty printer
|
# call the Artistic Style pretty printer on all source files
|
||||||
pretty:
|
pretty:
|
||||||
astyle --style=allman --indent=spaces=4 --indent-modifiers \
|
astyle \
|
||||||
--indent-switches --indent-preproc-block --indent-preproc-define \
|
--style=allman \
|
||||||
--indent-col1-comments --pad-oper --pad-header --align-pointer=type \
|
--indent=spaces=4 \
|
||||||
--align-reference=type --add-brackets --convert-tabs --close-templates \
|
--indent-modifiers \
|
||||||
--lineend=linux --preserve-date --suffix=none --formatted \
|
--indent-switches \
|
||||||
$(SRCS) $(AMALGAMATED_FILE) test/src/*.cpp \
|
--indent-preproc-block \
|
||||||
benchmarks/src/benchmarks.cpp doc/examples/*.cpp
|
--indent-preproc-define \
|
||||||
|
--indent-col1-comments \
|
||||||
|
--pad-oper \
|
||||||
|
--pad-header \
|
||||||
|
--align-pointer=type \
|
||||||
|
--align-reference=type \
|
||||||
|
--add-brackets \
|
||||||
|
--convert-tabs \
|
||||||
|
--close-templates \
|
||||||
|
--lineend=linux \
|
||||||
|
--preserve-date \
|
||||||
|
--suffix=none \
|
||||||
|
--formatted \
|
||||||
|
$(SRCS) $(AMALGAMATED_FILE) test/src/*.cpp benchmarks/src/benchmarks.cpp doc/examples/*.cpp
|
||||||
|
|
||||||
# create single header file
|
# create single header file
|
||||||
amalgamate: $(AMALGAMATED_FILE)
|
amalgamate: $(AMALGAMATED_FILE)
|
||||||
|
|
||||||
|
# call the amalgamation tool and pretty print
|
||||||
$(AMALGAMATED_FILE): $(SRCS)
|
$(AMALGAMATED_FILE): $(SRCS)
|
||||||
third_party/amalgamate/amalgamate.py -c third_party/amalgamate/config.json -s . --verbose=yes
|
third_party/amalgamate/amalgamate.py -c third_party/amalgamate/config.json -s . --verbose=yes
|
||||||
$(MAKE) pretty
|
$(MAKE) pretty
|
||||||
|
|
||||||
# check if single_include/nlohmann/json.hpp has been amalgamated from the nlohmann sources
|
# check if file single_include/nlohmann/json.hpp has been amalgamated from the nlohmann sources
|
||||||
|
# Note: this target is called by Travis
|
||||||
check-amalgamation:
|
check-amalgamation:
|
||||||
@mv $(AMALGAMATED_FILE) $(AMALGAMATED_FILE)~
|
@mv $(AMALGAMATED_FILE) $(AMALGAMATED_FILE)~
|
||||||
@$(MAKE) amalgamate
|
@$(MAKE) amalgamate
|
||||||
@diff $(AMALGAMATED_FILE) $(AMALGAMATED_FILE)~ || (echo "===================================================================\n Amalgamation required! Please read the contribution guidelines\n in file .github/CONTRIBUTING.md.\n===================================================================" ; mv $(AMALGAMATED_FILE)~ $(AMALGAMATED_FILE) ; false)
|
@diff $(AMALGAMATED_FILE) $(AMALGAMATED_FILE)~ || (echo "===================================================================\n Amalgamation required! Please read the contribution guidelines\n in file .github/CONTRIBUTING.md.\n===================================================================" ; mv $(AMALGAMATED_FILE)~ $(AMALGAMATED_FILE) ; false)
|
||||||
@mv $(AMALGAMATED_FILE)~ $(AMALGAMATED_FILE)
|
@mv $(AMALGAMATED_FILE)~ $(AMALGAMATED_FILE)
|
||||||
|
|
||||||
# check if every header in nlohmann includes sufficient headers to be compiled
|
# check if every header in nlohmann includes sufficient headers to be compiled individually
|
||||||
# individually
|
|
||||||
check-single-includes:
|
check-single-includes:
|
||||||
@for x in $(SRCS); do \
|
@for x in $(SRCS); do \
|
||||||
echo "Checking self-sufficiency of $$x..." ; \
|
echo "Checking self-sufficiency of $$x..." ; \
|
||||||
|
@ -513,29 +532,79 @@ check-single-includes:
|
||||||
rm -f single_include_test.cpp single_include_test; \
|
rm -f single_include_test.cpp single_include_test; \
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
||||||
##########################################################################
|
##########################################################################
|
||||||
# changelog
|
# CMake
|
||||||
##########################################################################
|
##########################################################################
|
||||||
|
|
||||||
|
# grep "^option" CMakeLists.txt test/CMakeLists.txt | sed 's/(/ /' | awk '{print $2}' | xargs
|
||||||
|
|
||||||
|
# check if all flags of our CMake files work
|
||||||
|
check_cmake_flags_do:
|
||||||
|
$(CMAKE_BINARY) --version
|
||||||
|
for flag in '' JSON_BuildTests JSON_Install JSON_MultipleHeaders JSON_Sanitizer JSON_Valgrind JSON_NoExceptions JSON_Coverage; do \
|
||||||
|
rm -fr cmake_build; \
|
||||||
|
mkdir cmake_build; \
|
||||||
|
echo "$(CMAKE_BINARY) .. -D$$flag=On" ; \
|
||||||
|
cd cmake_build ; \
|
||||||
|
CXX=g++-8 $(CMAKE_BINARY) .. -D$$flag=On -DCMAKE_CXX_COMPILE_FEATURES="cxx_std_11;cxx_range_for" -DCMAKE_CXX_FLAGS="-std=gnu++11" ; \
|
||||||
|
test -f Makefile || exit 1 ; \
|
||||||
|
cd .. ; \
|
||||||
|
done;
|
||||||
|
|
||||||
|
# call target `check_cmake_flags_do` twice: once for minimal required CMake version 3.1.0 and once for the installed version
|
||||||
|
check_cmake_flags:
|
||||||
|
wget https://github.com/Kitware/CMake/releases/download/v3.1.0/cmake-3.1.0-Darwin64.tar.gz
|
||||||
|
tar xfz cmake-3.1.0-Darwin64.tar.gz
|
||||||
|
CMAKE_BINARY=$(abspath cmake-3.1.0-Darwin64/CMake.app/Contents/bin/cmake) $(MAKE) check_cmake_flags_do
|
||||||
|
CMAKE_BINARY=$(shell which cmake) $(MAKE) check_cmake_flags_do
|
||||||
|
|
||||||
|
|
||||||
|
##########################################################################
|
||||||
|
# ChangeLog
|
||||||
|
##########################################################################
|
||||||
|
|
||||||
|
# Create a ChangeLog based on the git log using the GitHub Changelog Generator
|
||||||
|
# (<https://github.com/github-changelog-generator/github-changelog-generator>).
|
||||||
|
|
||||||
|
# variable to control the diffs between the last released version and the current repository state
|
||||||
NEXT_VERSION ?= "unreleased"
|
NEXT_VERSION ?= "unreleased"
|
||||||
|
|
||||||
ChangeLog.md:
|
ChangeLog.md:
|
||||||
github_changelog_generator -o ChangeLog.md --simple-list --release-url https://github.com/nlohmann/json/releases/tag/%s --future-release $(NEXT_VERSION)
|
github_changelog_generator -o ChangeLog.md --simple-list --release-url https://github.com/nlohmann/json/releases/tag/%s --future-release $(NEXT_VERSION)
|
||||||
gsed -i 's|https://github.com/nlohmann/json/releases/tag/HEAD|https://github.com/nlohmann/json/tree/HEAD|' ChangeLog.md
|
$(SED) -i 's|https://github.com/nlohmann/json/releases/tag/HEAD|https://github.com/nlohmann/json/tree/HEAD|' ChangeLog.md
|
||||||
gsed -i '2i All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/).' ChangeLog.md
|
$(SED) -i '2i All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/).' ChangeLog.md
|
||||||
|
|
||||||
|
|
||||||
##########################################################################
|
##########################################################################
|
||||||
# release
|
# Release files
|
||||||
##########################################################################
|
##########################################################################
|
||||||
|
|
||||||
|
# Create the files for a release and add signatures and hashes. We use `--no-extra` to make the resulting ZIP file
|
||||||
|
# reproducible, see <https://content.pivotal.io/blog/barriers-to-deterministic-reproducible-zip-files>.
|
||||||
|
|
||||||
release:
|
release:
|
||||||
|
rm -fr release_files
|
||||||
mkdir release_files
|
mkdir release_files
|
||||||
zip -9 -r include.zip include/*
|
zip -9 --recurse-paths --no-extra include.zip $(SRCS)
|
||||||
gpg --armor --detach-sig include.zip
|
gpg --armor --detach-sig include.zip
|
||||||
mv include.zip include.zip.asc release_files
|
mv include.zip include.zip.asc release_files
|
||||||
gpg --armor --detach-sig single_include/nlohmann/json.hpp
|
gpg --armor --detach-sig $(AMALGAMATED_FILE)
|
||||||
cp single_include/nlohmann/json.hpp release_files
|
cp $(AMALGAMATED_FILE) release_files
|
||||||
mv single_include/nlohmann/json.hpp.asc release_files
|
mv $(AMALGAMATED_FILE).asc release_files
|
||||||
cd release_files ; shasum -a 256 json.hpp > hashes.txt
|
cd release_files ; shasum -a 256 json.hpp > hashes.txt
|
||||||
cd release_files ; shasum -a 256 include.zip >> hashes.txt
|
cd release_files ; shasum -a 256 include.zip >> hashes.txt
|
||||||
|
|
||||||
|
|
||||||
|
##########################################################################
|
||||||
|
# Maintenance
|
||||||
|
##########################################################################
|
||||||
|
|
||||||
|
# clean up
|
||||||
|
clean:
|
||||||
|
rm -fr json_unit json_benchmarks fuzz fuzz-testing *.dSYM test/*.dSYM oclint_report.html
|
||||||
|
rm -fr benchmarks/files/numbers/*.json
|
||||||
|
rm -fr cmake-3.1.0-Darwin64.tar.gz cmake-3.1.0-Darwin64
|
||||||
|
rm -fr build_coverage build_benchmarks fuzz-testing clang_analyze_build pvs_studio_build infer_build clang_sanitize_build cmake_build
|
||||||
|
$(MAKE) clean -Cdoc
|
||||||
|
$(MAKE) clean -Ctest
|
||||||
|
|
|
@ -6,7 +6,7 @@ option(JSON_Coverage "Build test suite with coverage information" OFF)
|
||||||
if(JSON_Sanitizer)
|
if(JSON_Sanitizer)
|
||||||
message(STATUS "Building test suite with Clang sanitizer")
|
message(STATUS "Building test suite with Clang sanitizer")
|
||||||
if(NOT MSVC)
|
if(NOT MSVC)
|
||||||
set(CMAKE_CXX_FLAGS "-g -O2 -fsanitize=address -fsanitize=undefined -fno-omit-frame-pointer")
|
set(CMAKE_CXX_FLAGS "-g -O2 -fsanitize=address -fsanitize=undefined -fsanitize=implicit-conversion -fsanitize=integer -fsanitize=nullability -fno-omit-frame-pointer")
|
||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue