mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 15:22:43 +00:00 
			
		
		
		
	 3a71748e5d
			
		
	
	
		3a71748e5d
		
	
	
	
	
		
			
			This was done with CLion's automatic rename feature and with:
find . -name ClientConnection.h
    | rename 's/ClientConnection\.h/ConnectionFromClient.h/'
find . -name ClientConnection.cpp
    | rename 's/ClientConnection\.cpp/ConnectionFromClient.cpp/'
		
	
			
		
			
				
	
	
		
			26 lines
		
	
	
	
		
			583 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			583 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| serenity_component(
 | |
|     RequestServer
 | |
|     TARGETS RequestServer
 | |
| )
 | |
| 
 | |
| compile_ipc(RequestServer.ipc RequestServerEndpoint.h)
 | |
| compile_ipc(RequestClient.ipc RequestClientEndpoint.h)
 | |
| 
 | |
| set(SOURCES
 | |
|     ConnectionFromClient.cpp
 | |
|     ConnectionCache.cpp
 | |
|     Request.cpp
 | |
|     RequestClientEndpoint.h
 | |
|     RequestServerEndpoint.h
 | |
|     GeminiRequest.cpp
 | |
|     GeminiProtocol.cpp
 | |
|     HttpRequest.cpp
 | |
|     HttpProtocol.cpp
 | |
|     HttpsRequest.cpp
 | |
|     HttpsProtocol.cpp
 | |
|     main.cpp
 | |
|     Protocol.cpp
 | |
| )
 | |
| 
 | |
| serenity_bin(RequestServer)
 | |
| target_link_libraries(RequestServer LibCore LibIPC LibGemini LibHTTP LibMain)
 |