mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 18:32:45 +00:00 
			
		
		
		
	 93232d4e6d
			
		
	
	
		93232d4e6d
		
	
	
	
	
		
			
			Some refactoring of our root ca loading process: - Remove duplicate code - Remove duplicate calls to `parse_root_ca` - Load user imported certificates in Browser/RequestServer
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			329 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			329 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| add_compile_options(-Wvla)
 | |
| 
 | |
| set(SOURCES
 | |
|     Certificate.cpp
 | |
|     Handshake.cpp
 | |
|     HandshakeCertificate.cpp
 | |
|     HandshakeClient.cpp
 | |
|     HandshakeServer.cpp
 | |
|     Record.cpp
 | |
|     Socket.cpp
 | |
|     TLSv12.cpp
 | |
| )
 | |
| 
 | |
| serenity_lib(LibTLS tls)
 | |
| target_link_libraries(LibTLS PRIVATE LibCore LibCrypto LibFileSystem)
 | |
| 
 | |
| include(ca_certificates_data)
 |