forked from qt-creator/qt-creator
		
	Since we do not support Qt < 5.15 anymore, and as a first step for getting rid of our special FindQt5.cmake. Change-Id: Icc5dbaf9b0a3a622b1f609ff114b9decb6d2856c Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Cristian Adam <cristian.adam@qt.io>
		
			
				
	
	
		
			58 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			CMake
		
	
	
	
	
	
| function (env_with_default envName varToSet default)
 | |
|   if(DEFINED ENV{${envName}})
 | |
|     set(${varToSet} $ENV{${envName}} PARENT_SCOPE)
 | |
|   else()
 | |
|     set(${varToSet} ${default} PARENT_SCOPE)
 | |
|   endif()
 | |
| endfunction()
 | |
| 
 | |
| function(setup_dependencies_component)
 | |
|   find_package(Python3 COMPONENTS Interpreter)
 | |
|   if (NOT Python3_Interpreter_FOUND)
 | |
|     message("No python interpreter found, skipping \"Dependencies\" install component.")
 | |
|   else()
 | |
|     get_target_property(_qmake_binary Qt::qmake IMPORTED_LOCATION)
 | |
|     set(_llvm_arg)
 | |
|     if (LLVM_INSTALL_PREFIX)
 | |
|       set(_llvm_arg "--llvm \"${LLVM_INSTALL_PREFIX}\"")
 | |
|     endif()
 | |
|     set(_elfutils_arg)
 | |
|     if (ELFUTILS_INCLUDE_DIR)
 | |
|       get_filename_component(_elfutils_path ${ELFUTILS_INCLUDE_DIR} DIRECTORY)
 | |
|       set(_elfutils_arg "--elfutils \"${_elfutils_path}\"")
 | |
|     endif()
 | |
|     install(CODE "
 | |
|         # DESTDIR is set for e.g. the cpack DEB generator, but is empty in other situations
 | |
|         if(DEFINED ENV{DESTDIR})
 | |
|           set(DESTDIR_WITH_SEP \"\$ENV{DESTDIR}/\")
 | |
|         else()
 | |
|           set(DESTDIR_WITH_SEP \"\")
 | |
|         endif()
 | |
|         set(_default_app_target \"\${DESTDIR_WITH_SEP}\${CMAKE_INSTALL_PREFIX}/${IDE_APP_PATH}/${IDE_APP_TARGET}${CMAKE_EXECUTABLE_SUFFIX}\")
 | |
|         set(_ide_app_target \"\${_default_app_target}\")
 | |
|         if (NOT EXISTS \"\${_ide_app_target}\")
 | |
|           # The component CPack generators (WIX, NSIS64, IFW) install every component with their own CMAKE_INSTALL_PREFIX
 | |
|           # directory and since deployqt.py needs the path to IDE_APP_TARGET the line below is needeed
 | |
|           string(REPLACE \"Dependencies\" \"${CMAKE_INSTALL_DEFAULT_COMPONENT_NAME}\" _ide_app_target \"\${_ide_app_target}\")
 | |
|         endif()
 | |
|         if (NOT EXISTS \"\${_ide_app_target}\")
 | |
|           # something went wrong, reset to default and hope for the best
 | |
|           set(_ide_app_target \"\${_default_app_target}\")
 | |
|         endif()
 | |
|         execute_process(COMMAND
 | |
|           \"${Python3_EXECUTABLE}\"
 | |
|           \"${CMAKE_CURRENT_LIST_DIR}/scripts/deployqt.py\"
 | |
|           ${_llvm_arg}
 | |
|           ${_elfutils_arg}
 | |
|           \"\${_ide_app_target}\"
 | |
|           \"${_qmake_binary}\"
 | |
|           COMMAND_ECHO STDOUT
 | |
|           \${QTC_COMMAND_ERROR_IS_FATAL}
 | |
|           )
 | |
|       "
 | |
|       COMPONENT Dependencies
 | |
|       EXCLUDE_FROM_ALL
 | |
|     )
 | |
|   endif()
 | |
| endfunction()
 |