Added support for custom writer classes (closes #1088)

This commit is contained in:
Benoit Blanchon
2019-09-13 14:06:41 +02:00
parent 2078871f36
commit 498a2e4c1e
9 changed files with 133 additions and 30 deletions

View File

@ -2,10 +2,10 @@
# Copyright Benoit Blanchon 2014-2019
# MIT License
add_executable(JsonWriterTests
add_executable(TextFormatterTests
writeFloat.cpp
writeString.cpp
)
target_link_libraries(JsonWriterTests catch)
add_test(TextFormatter JsonWriterTests)
target_link_libraries(TextFormatterTests catch)
add_test(TextFormatter TextFormatterTests)