mirror of
				https://github.com/eledio-devices/thirdparty-ArduinoJson.git
				synced 2025-10-31 08:42:39 +01:00 
			
		
		
		
	* Added `serializeJson()` and `serializeJsonPretty()` * Added `measureJson()` and `measureJsonPretty()` * Removed `printTo()` and `prettyPrintTo()` * Removed `measureLength()` and `measurePrettyLength()`
		
			
				
	
	
		
			15 lines
		
	
	
		
			308 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			308 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| # ArduinoJson - arduinojson.org
 | |
| # Copyright Benoit Blanchon 2014-2018
 | |
| # MIT License
 | |
| 
 | |
| add_executable(JsonSerializerTests
 | |
| 	JsonArray.cpp
 | |
| 	JsonArrayPretty.cpp
 | |
| 	JsonObject.cpp
 | |
| 	JsonObjectPretty.cpp
 | |
| 	JsonVariant.cpp
 | |
| )
 | |
| 
 | |
| target_link_libraries(JsonSerializerTests catch)
 | |
| add_test(JsonSerializer JsonSerializerTests)
 |