Format more files in tests directory

This commit is contained in:
Florian Albrechtskirchinger 2022-07-25 13:08:30 +02:00
parent 5bbcb6c0a3
commit f42b31b918
No known key found for this signature in database
GPG Key ID: 19618CE9B2D4BE6D
9 changed files with 11 additions and 8 deletions

View File

@ -15,6 +15,9 @@ SED:=$(shell command -v gsed || which sed)
# the list of sources in the include folder # the list of sources in the include folder
SRCS=$(shell find include -type f | sort) SRCS=$(shell find include -type f | sort)
# the list of sources in the tests folder
TESTS_SRCS=$(shell find tests -type f \( -name '*.hpp' -o -name '*.cpp' -o -name '*.cu' \) -not -path 'tests/thirdparty/*' | sort)
# the single header (amalgamated from the source files) # the single header (amalgamated from the source files)
AMALGAMATED_FILE=single_include/nlohmann/json.hpp AMALGAMATED_FILE=single_include/nlohmann/json.hpp