mirror of
				https://github.com/qgis/QGIS.git
				synced 2025-11-04 00:04:25 -05:00 
			
		
		
		
	This changes the way text outputs are handled. Now the output of the command is piped to a file, and with that file, the raw and HTML outputs are generated. More formatting for the HTML file should be added in the future, since it is now rather basic fixes #6379
		
			
				
	
	
		
			7 lines
		
	
	
		
			230 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			230 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
FILE(GLOB PY_FILES *.py)
 | 
						|
FILE(GLOB OTHER_FILES grass.txt)
 | 
						|
FILE(GLOB DESCR_FILES description/*.txt)
 | 
						|
 | 
						|
PLUGIN_INSTALL(processing algs/grass ${PY_FILES} ${OTHER_FILES})
 | 
						|
PLUGIN_INSTALL(processing algs/grass/description ${DESCR_FILES})
 |