mirror of
				https://github.com/eledio-devices/thirdparty-ArduinoJson.git
				synced 2025-10-31 16:14:11 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			550 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			550 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| # ArduinoJson - https://arduinojson.org
 | |
| # Copyright Benoit Blanchon 2014-2021
 | |
| # MIT License
 | |
| 
 | |
| if(MSVC_VERSION LESS 1910)
 | |
| 	return()
 | |
| endif()
 | |
| 
 | |
| if(CMAKE_CXX_COMPILER_ID MATCHES "Clang" AND CMAKE_CXX_COMPILER_VERSION VERSION_LESS 5)
 | |
| 	return()
 | |
| endif()
 | |
| 
 | |
| if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU" AND CMAKE_CXX_COMPILER_VERSION VERSION_LESS 7)
 | |
| 	return()
 | |
| endif()
 | |
| 
 | |
| set(CMAKE_CXX_STANDARD 17)
 | |
| set(CMAKE_CXX_STANDARD_REQUIRED ON)
 | |
| 
 | |
| add_executable(Cpp17Tests
 | |
| 	string_view.cpp
 | |
| )
 | |
| 
 | |
| add_test(Cpp17 Cpp17Tests)
 | |
| 
 | |
| set_tests_properties(Cpp17
 | |
| 	PROPERTIES
 | |
| 		LABELS 		"Catch"
 | |
| )
 |