mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 18:02:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
	
		
			996 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
	
		
			996 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| set(WEBCONTENT_SOURCE_DIR ${SERENITY_SOURCE_DIR}/Userland/Services/WebContent/)
 | |
| 
 | |
| set(WEBCONTENT_SOURCES
 | |
|     ${WEBCONTENT_SOURCE_DIR}/ConnectionFromClient.cpp
 | |
|     ${WEBCONTENT_SOURCE_DIR}/ConsoleGlobalEnvironmentExtensions.cpp
 | |
|     ${WEBCONTENT_SOURCE_DIR}/PageHost.cpp
 | |
|     ${WEBCONTENT_SOURCE_DIR}/WebContentConsoleClient.cpp
 | |
|     ${WEBCONTENT_SOURCE_DIR}/WebDriverConnection.cpp
 | |
|     ../EventLoopPluginQt.cpp
 | |
|     ../FontPluginQt.cpp
 | |
|     ../ImageCodecPluginLadybird.cpp
 | |
|     ../RequestManagerQt.cpp
 | |
|     ../TimerQt.cpp
 | |
|     ../Utilities.cpp
 | |
|     ../WebSocketClientManagerLadybird.cpp
 | |
|     ../WebSocketLadybird.cpp
 | |
|     ../WebSocketImplQt.cpp
 | |
|     main.cpp
 | |
| )
 | |
| 
 | |
| qt_add_executable(WebContent ${WEBCONTENT_SOURCES})
 | |
| 
 | |
| target_include_directories(WebContent PRIVATE ${SERENITY_SOURCE_DIR}/Userland/Services/)
 | |
| target_include_directories(WebContent PRIVATE ${CMAKE_CURRENT_BINARY_DIR}/..)
 | |
| target_link_libraries(WebContent PRIVATE Qt::Core Qt::Gui Qt::Network LibCore LibGfx LibIPC LibJS LibMain LibWeb LibWebSocket)
 | 
