mirror of
				https://github.com/qgis/QGIS.git
				synced 2025-11-04 00:04:25 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			425 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			425 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
file(GLOB PY_FILES __init__.py link_types.py plugin.py util.py)
 | 
						|
PLUGIN_INSTALL(MetaSearch . ${PY_FILES} metadata.txt LICENSE.txt)
 | 
						|
 | 
						|
foreach(dir ui dialogs images resources resources/templates)
 | 
						|
  file(GLOB _items ${dir}/*)
 | 
						|
  set(_files)
 | 
						|
  foreach(_item ${_items})
 | 
						|
    if(NOT IS_DIRECTORY ${_item})
 | 
						|
      list(APPEND _files ${_item})
 | 
						|
    endif()
 | 
						|
  endforeach(_item)
 | 
						|
  PLUGIN_INSTALL(MetaSearch ${dir} ${_files})
 | 
						|
endforeach(dir)
 |