mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 05:42:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
	
		
			910 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
	
		
			910 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| serenity_component(
 | |
|     WebContent
 | |
|     TARGETS WebContent
 | |
|     DEPENDS ImageDecoder RequestServer WebSocket
 | |
| )
 | |
| 
 | |
| compile_ipc(WebContentServer.ipc WebContentServerEndpoint.h)
 | |
| compile_ipc(WebContentClient.ipc WebContentClientEndpoint.h)
 | |
| 
 | |
| compile_ipc(WebDriverClient.ipc WebDriverClientEndpoint.h)
 | |
| compile_ipc(WebDriverServer.ipc WebDriverServerEndpoint.h)
 | |
| 
 | |
| set(SOURCES
 | |
|     ConnectionFromClient.cpp
 | |
|     ConsoleGlobalEnvironmentExtensions.cpp
 | |
|     ImageCodecPluginSerenity.cpp
 | |
|     PageHost.cpp
 | |
|     WebContentConsoleClient.cpp
 | |
|     WebDriverConnection.cpp
 | |
|     main.cpp
 | |
| )
 | |
| 
 | |
| set(GENERATED_SOURCES
 | |
|     WebContentClientEndpoint.h
 | |
|     WebContentServerEndpoint.h
 | |
|     WebDriverClientEndpoint.h
 | |
|     WebDriverServerEndpoint.h
 | |
| )
 | |
| 
 | |
| serenity_bin(WebContent)
 | |
| target_link_libraries(WebContent PRIVATE LibCore LibFileSystem LibIPC LibGfx LibImageDecoderClient LibJS LibWebView LibWeb LibLocale LibMain)
 | |
| link_with_locale_data(WebContent)
 | 
