mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 18:02:44 +00:00 
			
		
		
		
	 931f462b6e
			
		
	
	
		931f462b6e
		
	
	
	
	
		
			
			Since the Browser now only runs in multi-process mode, we have no use for this single-process ConsoleClient. :^)
		
			
				
	
	
		
			29 lines
		
	
	
	
		
			694 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
	
		
			694 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| serenity_component(
 | |
|     Browser
 | |
|     RECOMMENDED
 | |
|     TARGETS Browser
 | |
|     DEPENDS ImageDecoder RequestServer WebContent WebSocket
 | |
| )
 | |
| 
 | |
| compile_gml(BrowserWindow.gml BrowserWindowGML.h browser_window_gml)
 | |
| compile_gml(EditBookmark.gml EditBookmarkGML.h edit_bookmark_gml)
 | |
| compile_gml(Tab.gml TabGML.h tab_gml)
 | |
| 
 | |
| set(SOURCES
 | |
|     BookmarksBarWidget.cpp
 | |
|     BrowserWindow.cpp
 | |
|     BrowserWindowGML.h
 | |
|     ConsoleWidget.cpp
 | |
|     CookieJar.cpp
 | |
|     DownloadWidget.cpp
 | |
|     EditBookmarkGML.h
 | |
|     History.cpp
 | |
|     InspectorWidget.cpp
 | |
|     Tab.cpp
 | |
|     TabGML.h
 | |
|     WindowActions.cpp
 | |
|     main.cpp
 | |
| )
 | |
| 
 | |
| serenity_app(Browser ICON app-browser)
 | |
| target_link_libraries(Browser LibWeb LibProtocol LibGUI LibDesktop LibConfig)
 |