mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	Factor out code from ProfileWidget's ToolTipItem, but make the radius of the corners dynamic. Move into backend-shared, though a new ui-shared might be preferred. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			321 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			321 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| # backend functionality shared between Desktop (UI) and Mobile (QML)
 | |
| 
 | |
| set(BACKEND_SRCS
 | |
| 	exportfuncs.cpp
 | |
| 	exportfuncs.h
 | |
| 	plannershared.cpp
 | |
| 	plannershared.h
 | |
| 	roundrectitem.cpp
 | |
| 	roundrectitem.h
 | |
| )
 | |
| 
 | |
| add_library(subsurface_backend_shared STATIC ${BACKEND_SRCS})
 | |
| target_link_libraries(subsurface_backend_shared ${QT_LIBRARIES})
 |