mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 10:22:45 +00:00 
			
		
		
		
	 631d36fd98
			
		
	
	
		631d36fd98
		
	
	
	
	
		
			
			This adds component declarations so that users can select to not build certain parts of the OS.
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			436 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			436 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| serenity_component(
 | |
|     WebContent
 | |
|     TARGETS WebContent
 | |
| )
 | |
| 
 | |
| compile_ipc(WebContentServer.ipc WebContentServerEndpoint.h)
 | |
| compile_ipc(WebContentClient.ipc WebContentClientEndpoint.h)
 | |
| 
 | |
| set(SOURCES
 | |
|     ClientConnection.cpp
 | |
|     main.cpp
 | |
|     PageHost.cpp
 | |
|     WebContentConsoleClient.cpp
 | |
|     WebContentServerEndpoint.h
 | |
|     WebContentClientEndpoint.h
 | |
| )
 | |
| 
 | |
| serenity_bin(WebContent)
 | |
| target_link_libraries(WebContent LibCore LibIPC LibGfx LibWeb)
 |