mirror of
				https://github.com/eledio-devices/thirdparty-ArduinoJson.git
				synced 2025-10-31 08:42:39 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
		
			492 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			492 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| # ArduinoJson - https://arduinojson.org
 | |
| # Copyright © 2014-2022, Benoit BLANCHON
 | |
| # MIT License
 | |
| 
 | |
| add_executable(JsonVariantTests
 | |
| 	add.cpp
 | |
| 	as.cpp
 | |
| 	clear.cpp
 | |
| 	compare.cpp
 | |
| 	containsKey.cpp
 | |
| 	converters.cpp
 | |
| 	copy.cpp
 | |
| 	createNested.cpp
 | |
| 	is.cpp
 | |
| 	isnull.cpp
 | |
| 	memoryUsage.cpp
 | |
| 	misc.cpp
 | |
| 	nesting.cpp
 | |
| 	or.cpp
 | |
| 	overflow.cpp
 | |
| 	remove.cpp
 | |
| 	set.cpp
 | |
| 	size.cpp
 | |
| 	subscript.cpp
 | |
| 	types.cpp
 | |
| 	unbound.cpp
 | |
| )
 | |
| 
 | |
| add_test(JsonVariant JsonVariantTests)
 | |
| 
 | |
| set_tests_properties(JsonVariant
 | |
| 	PROPERTIES
 | |
| 		LABELS 		"Catch"
 | |
| )
 |