mirror of
				https://github.com/eledio-devices/thirdparty-ArduinoJson.git
				synced 2025-10-31 08:42:39 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			369 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			369 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| # ArduinoJson - arduinojson.org
 | |
| # Copyright Benoit Blanchon 2014-2018
 | |
| # MIT License
 | |
| 
 | |
| add_executable(JsonParserTests
 | |
| 	DynamicJsonArray.cpp
 | |
| 	DynamicJsonObject.cpp
 | |
| 	DynamicJsonVariant.cpp
 | |
| 	JsonError.cpp
 | |
| 	nestingLimit.cpp
 | |
| 	StaticJsonArray.cpp
 | |
| 	StaticJsonObject.cpp
 | |
| 	StaticJsonVariant.cpp
 | |
| )
 | |
| 
 | |
| target_link_libraries(JsonParserTests catch)
 | |
| add_test(JsonParser JsonParserTests)
 |