mirror of
				https://github.com/eledio-devices/thirdparty-ArduinoJson.git
				synced 2025-10-31 00:32:37 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			317 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			317 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| # ArduinoJson - arduinojson.org
 | |
| # Copyright Benoit Blanchon 2014-2020
 | |
| # MIT License
 | |
| 
 | |
| add_executable(MemberProxyTests
 | |
| 	add.cpp
 | |
| 	clear.cpp
 | |
| 	compare.cpp
 | |
| 	containsKey.cpp
 | |
| 	remove.cpp
 | |
| 	set.cpp
 | |
| 	size.cpp
 | |
| 	subscript.cpp
 | |
| )
 | |
| 
 | |
| target_link_libraries(MemberProxyTests
 | |
| 	ArduinoJson
 | |
| 	catch
 | |
| )
 | |
| 
 | |
| add_test(MemberProxy MemberProxyTests)
 |