mirror of
				https://github.com/qgis/QGIS.git
				synced 2025-10-30 00:07:09 -04:00 
			
		
		
		
	* [cmake] generalize Python output directory in UseTest macro this is helpful in case we set up another python output directory (eg PySide2) * define python output directories to the parent scope * try with target_include_directories * define vars on top level * Update UsePythonTest.cmake * some cleanup * more cleanup * fix uic * fix path for all platforms * fix var
		
			
				
	
	
		
			24 lines
		
	
	
		
			773 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			773 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| # See ../CMakeLists.txt for info on staged-plugins* and clean-staged-plugins targets
 | |
| 
 | |
| set(QGIS_PYTHON_DIR ${Python_SITEARCH}/qgis)
 | |
| 
 | |
| set(PY_FILES
 | |
|   __init__.py
 | |
|   algfactory.py
 | |
| )
 | |
| 
 | |
| file (MAKE_DIRECTORY ${QGIS_PYTHON_OUTPUT_DIRECTORY}/processing)
 | |
| install(FILES ${PY_FILES} DESTINATION "${QGIS_PYTHON_DIR}/processing")
 | |
| 
 | |
| add_custom_target(pyprocessing ALL)
 | |
| # stage to output to make available when QGIS is run from build directory
 | |
| foreach(pyfile ${PY_FILES})
 | |
|   add_custom_command(TARGET pyprocessing
 | |
|     POST_BUILD
 | |
|     COMMAND ${CMAKE_COMMAND} -E copy ${pyfile} "${QGIS_PYTHON_OUTPUT_DIRECTORY}/processing"
 | |
|     WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
 | |
|     DEPENDS ${pyfile}
 | |
|   )
 | |
|   PY_COMPILE(pyutils "${QGIS_PYTHON_OUTPUT_DIRECTORY}/processing/${pyfile}")
 | |
| endforeach(pyfile)
 |