mirror of
				https://github.com/Mbed-TLS/mbedtls.git
				synced 2025-10-31 21:50:31 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			508 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			508 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| option(INSTALL_MBEDTLS_HEADERS "Install Mbed TLS headers." ON)
 | |
| 
 | |
| if(INSTALL_MBEDTLS_HEADERS)
 | |
| 
 | |
|     file(GLOB headers "mbedtls/*.h")
 | |
| 
 | |
|     install(FILES ${headers}
 | |
|         DESTINATION include/mbedtls
 | |
|         PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ)
 | |
| endif(INSTALL_MBEDTLS_HEADERS)
 | |
| 
 | |
| # Make mbedtls_config.h available in an out-of-source build. ssl-opt.sh requires it.
 | |
| if (ENABLE_TESTING AND NOT ${CMAKE_CURRENT_BINARY_DIR} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR})
 | |
|     link_to_source(mbedtls)
 | |
| endif()
 |