mirror of
				https://github.com/qgis/QGIS.git
				synced 2025-11-04 00:04:25 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			376 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			376 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
add_subdirectory(db_plugins)
 | 
						|
add_subdirectory(icons)
 | 
						|
 | 
						|
file(GLOB OTHER_FILES LICENSE README TODO)
 | 
						|
file(GLOB PY_FILES *.py)
 | 
						|
 | 
						|
file(GLOB UI_FILES ui/*.ui)
 | 
						|
PYQT_WRAP_UI(PYUI_FILES ${UI_FILES})
 | 
						|
PYQT_ADD_RESOURCES(PYRC_FILES resources.qrc)
 | 
						|
 | 
						|
PLUGIN_INSTALL(db_manager . ${OTHER_FILES} ${PY_FILES} ${PYRC_FILES} metadata.txt)
 | 
						|
PLUGIN_INSTALL(db_manager ui ${PYUI_FILES} ui/__init__.py)
 |