mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 05:22:45 +00:00 
			
		
		
		
	 a1e5a6ac40
			
		
	
	
		a1e5a6ac40
		
	
	
	
	
		
			
			This requires two parts: Core::System::current_executable_path(), and passing the serenity-resource-root as an argument to the process.
		
			
				
	
	
		
			32 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
| executable("RequestServer") {
 | |
|   configs += [ "//Ladybird:ladybird_config" ]
 | |
|   include_dirs = [
 | |
|     "//Userland/Libraries",
 | |
|     "//Userland/Services",
 | |
|   ]
 | |
|   deps = [
 | |
|     "//AK",
 | |
|     "//Userland/Libraries/LibCore",
 | |
|     "//Userland/Libraries/LibCrypto",
 | |
|     "//Userland/Libraries/LibFileSystem",
 | |
|     "//Userland/Libraries/LibGemini",
 | |
|     "//Userland/Libraries/LibHTTP",
 | |
|     "//Userland/Libraries/LibIPC",
 | |
|     "//Userland/Libraries/LibMain",
 | |
|     "//Userland/Libraries/LibProtocol",
 | |
|     "//Userland/Libraries/LibTLS",
 | |
|   ]
 | |
|   sources = [
 | |
|     "//Userland/Services/RequestServer/ConnectionCache.cpp",
 | |
|     "//Userland/Services/RequestServer/ConnectionFromClient.cpp",
 | |
|     "//Userland/Services/RequestServer/GeminiProtocol.cpp",
 | |
|     "//Userland/Services/RequestServer/GeminiRequest.cpp",
 | |
|     "//Userland/Services/RequestServer/HttpProtocol.cpp",
 | |
|     "//Userland/Services/RequestServer/HttpRequest.cpp",
 | |
|     "//Userland/Services/RequestServer/HttpsProtocol.cpp",
 | |
|     "//Userland/Services/RequestServer/HttpsRequest.cpp",
 | |
|     "//Userland/Services/RequestServer/Protocol.cpp",
 | |
|     "//Userland/Services/RequestServer/Request.cpp",
 | |
|     "main.cpp",
 | |
|   ]
 | |
| }
 |