mirror of
				https://github.com/eledio-devices/thirdparty-ArduinoJson.git
				synced 2025-11-01 00:38:27 +01:00 
			
		
		
		
	Removed `JsonObject::is<T>(k)` and `JsonObject::set(k,v)` Replaced `T JsonArray::get<T>(i)` with `JsonVariant JsonArray::get(i)` Replaced `T JsonObject::get<T>(k)` with `JsonVariant JsonObject::get(k)`
		
			
				
	
	
		
			22 lines
		
	
	
		
			357 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			357 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| # ArduinoJson - arduinojson.org
 | |
| # Copyright Benoit Blanchon 2014-2018
 | |
| # MIT License
 | |
| 
 | |
| add_executable(JsonArrayTests 
 | |
| 	add.cpp
 | |
| 	copyFrom.cpp
 | |
| 	copyTo.cpp
 | |
| 	createNested.cpp
 | |
| 	equals.cpp
 | |
| 	isNull.cpp
 | |
| 	iterator.cpp
 | |
| 	remove.cpp
 | |
| 	size.cpp
 | |
| 	std_string.cpp
 | |
| 	subscript.cpp
 | |
| 	undefined.cpp
 | |
| )
 | |
| 
 | |
| target_link_libraries(JsonArrayTests catch)
 | |
| add_test(JsonArray JsonArrayTests)
 |