mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	This removes all references to WebKit if cmake option USE_WEBKIT is enabled. For the user manual it changes it to WebEngine (seems to work for me). Similar for the Facebook connection (minus a reference to a cookie jar). This I could not test at the moment, as I wrote this on a train. Printing does not work, it is a null operation at the moment. Currently, large parts of of the printing code are commented out as there is no direct way to access page elements in WebEngine. It seems this needs to be done via Javascript (with a callback invoked). There is new functionality in WebEngine to render a view to a PDF file but this needs more work (and probably some thoughts towards page breaks). Signed-off-by: Robert C. Helling <helling@atdotde.de>
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			440 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			440 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| if(NO_USERMANUAL)
 | |
| 	message(STATUS "building without usermanual")
 | |
| 	add_definitions(-DNO_USERMANUAL)
 | |
| else()
 | |
| 	if(USE_WEBENGINE)
 | |
| 		message(STATUS "building with QWebEngine")
 | |
| 		list(APPEND QT_EXTRA_COMPONENTS WebEngineWidgets)
 | |
| 		list(APPEND QT_EXTRA_LIBRARIES Qt5::WebEngineWidgets)
 | |
| 		add_definitions(-DUSE_WEBENGINE)
 | |
| 	else()
 | |
| 		list(APPEND QT_EXTRA_COMPONENTS WebKitWidgets)
 | |
| 		list(APPEND QT_EXTRA_LIBRARIES Qt5::WebKitWidgets)
 | |
| 	endif()
 | |
| endif()
 |