mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 07:39:01 +08:00
0d209ca968
* [qtbase] Change qt source downloads to point at GitHub * [qtbase] Rewrite update system to emit tarball data * [qtbase] PR feedback * Update Qt to 6.3.1 * reenable qtlocation ? * v db * move buildtrees - to b in pipeline; trying to get webengine logs * fix patch * v db * remove special handling of arm cross case fixed in windows toolchain * v db * Fix stuff * fix more stuff * fix more stuff * retry * fix regex replacement * fix regex stuff. And qtinterface ref? * more fixes * remove unused variable * v db * Revert scripts/azure-pipelines/test-modified-ports.ps1 * v db fix * revert qtlocation changes * revert v db * v db * v db Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
21 lines
977 B
CMake
21 lines
977 B
CMake
include_guard(GLOBAL)
|
|
|
|
#Could probably be the beginning of a vcpkg_install_copyright?
|
|
function(qt_install_copyright SOURCE_PATH)
|
|
#Find the relevant license file and install it
|
|
if(EXISTS "${SOURCE_PATH}/LICENSE.LGPLv3")
|
|
set(LICENSE_PATH "${SOURCE_PATH}/LICENSE.LGPLv3")
|
|
elseif(EXISTS "${SOURCE_PATH}/LICENSE.LGPL3")
|
|
set(LICENSE_PATH "${SOURCE_PATH}/LICENSE.LGPL3")
|
|
elseif(EXISTS "${SOURCE_PATH}/LICENSE.GPLv3")
|
|
set(LICENSE_PATH "${SOURCE_PATH}/LICENSE.GPLv3")
|
|
elseif(EXISTS "${SOURCE_PATH}/LICENSE.GPL3")
|
|
set(LICENSE_PATH "${SOURCE_PATH}/LICENSE.GPL3")
|
|
elseif(EXISTS "${SOURCE_PATH}/LICENSE.GPL3-EXCEPT")
|
|
set(LICENSE_PATH "${SOURCE_PATH}/LICENSE.GPL3-EXCEPT")
|
|
elseif(EXISTS "${SOURCE_PATH}/LICENSE.FDL")
|
|
set(LICENSE_PATH "${SOURCE_PATH}/LICENSE.FDL")
|
|
endif()
|
|
file(INSTALL "${LICENSE_PATH}" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
|
|
endfunction()
|