mirror of
				https://github.com/eledio-devices/thirdparty-ArduinoJson.git
				synced 2025-10-31 00:32:37 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			445 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			445 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| # ArduinoJson - arduinojson.org
 | |
| # Copyright Benoit Blanchon 2014-2020
 | |
| # MIT License
 | |
| 
 | |
| add_executable(MsgPackDeserializerTests
 | |
| 	deserializeArray.cpp
 | |
| 	deserializeObject.cpp
 | |
| 	deserializeStaticVariant.cpp
 | |
| 	deserializeVariant.cpp
 | |
| 	doubleToFloat.cpp
 | |
| 	incompleteInput.cpp
 | |
| 	input_types.cpp
 | |
| 	nestingLimit.cpp
 | |
| 	notSupported.cpp
 | |
| )
 | |
| 
 | |
| target_link_libraries(MsgPackDeserializerTests
 | |
| 	ArduinoJson
 | |
| 	catch
 | |
| )
 | |
| 
 | |
| add_test(MsgPackDeserializer MsgPackDeserializerTests)
 |