-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
46 changed files
with
13,504 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
/*************************************************************************************************** | ||
Copyright (C) 2024 The Qt Company Ltd. | ||
SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 | ||
***************************************************************************************************/ | ||
--> | ||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<!-- | ||
///////////////////////////////////////////////////////////////////////////////////////////////// | ||
// Qt/MSBuild import | ||
// --> | ||
<PropertyGroup> | ||
<QtMsBuildProps> | ||
$(QtMsBuildProps); | ||
$(MSBuildThisFileDirectory)qtdeploy.props | ||
</QtMsBuildProps> | ||
<QtMsBuildTargets> | ||
$(QtMsBuildTargets); | ||
$(MSBuildThisFileDirectory)qtdeploy.targets | ||
</QtMsBuildTargets> | ||
</PropertyGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
/*************************************************************************************************** | ||
Copyright (C) 2024 The Qt Company Ltd. | ||
SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 | ||
***************************************************************************************************/ | ||
--> | ||
|
||
<!-- | ||
/////////////////////////////////////////////////////////////////////////////////////////////////// | ||
// Deployment of Qt dependencies | ||
// --> | ||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
|
||
<!-- | ||
///////////////////////////////////////////////////////////////////////////////////////////////// | ||
// Default property values | ||
// --> | ||
<PropertyGroup> | ||
<QtDeploy Condition="'$(QtDeploy)' == ''">false</QtDeploy> | ||
<QtDeployEnv Condition="'$(QtDeployEnv)' == ''">VCINSTALLDIR=$(VCInstallDir)</QtDeployEnv> | ||
<QtDeployAddToolsDirToPath Condition="'$(QtDeployAddToolsDirToPath)' == ''" | ||
>true</QtDeployAddToolsDirToPath> | ||
<QtDeployFiles Condition="'$(QtDeployFiles)' == ''" | ||
>$(TargetPath)</QtDeployFiles> | ||
<QtDeployDir Condition="'$(QtDeployDir)' == '' AND '$(QtDeployToProjectDir)' == 'true'" | ||
>$(ProjectDir)</QtDeployDir> | ||
<QtDeployDir Condition="'$(QtDeployDir)' == '' AND '$(QtDeployToProjectDir)' != 'true'" | ||
>@(Qt->'%(OutDir)')</QtDeployDir> | ||
<QtDeployQmlDir Condition="'$(QtDeployQmlDir)' == ''" | ||
>$(ProjectDir)</QtDeployQmlDir> | ||
<QtDeployDebugRelease Condition="'$(QtDeployDebugRelease)' == ''" | ||
>false</QtDeployDebugRelease> | ||
<QtDeployPdb Condition="'$(QtDeployPdb)' == ''" | ||
>false</QtDeployPdb> | ||
<QtDeployForce Condition="'$(QtDeployForce)' == ''" | ||
>false</QtDeployForce> | ||
<QtDeployNoPatchQt Condition="'$(QtDeployNoPatchQt)' == ''" | ||
>false</QtDeployNoPatchQt> | ||
<QtDeployNoPlugins Condition="'$(QtDeployNoPlugins)' == ''" | ||
>false</QtDeployNoPlugins> | ||
<QtDeployNoLibraries Condition="'$(QtDeployNoLibraries)' == ''" | ||
>false</QtDeployNoLibraries> | ||
<QtDeployNoQuickImport Condition="'$(QtDeployNoQuickImport)' == ''" | ||
>false</QtDeployNoQuickImport> | ||
<QtDeployNoTranslations Condition="'$(QtDeployNoTranslations)' == ''" | ||
>false</QtDeployNoTranslations> | ||
<QtDeployNoSystemD3dCompiler Condition="'$(QtDeployNoSystemD3dCompiler)' == ''" | ||
>false</QtDeployNoSystemD3dCompiler> | ||
<QtDeployNoVirtualKeyboard Condition="'$(QtDeployNoVirtualKeyboard)' == ''" | ||
>false</QtDeployNoVirtualKeyboard> | ||
<QtDeployCompilerRuntime Condition="'$(QtDeployCompilerRuntime)' == ''" | ||
>false</QtDeployCompilerRuntime> | ||
<QtDeployWebkit2 Condition="'$(QtDeployWebkit2)' == ''" | ||
>false</QtDeployWebkit2> | ||
<QtDeployAngle Condition="'$(QtDeployAngle)' == ''" | ||
>false</QtDeployAngle> | ||
<QtDeployNoOpenglSw Condition="'$(QtDeployNoOpenglSw)' == ''" | ||
>false</QtDeployNoOpenglSw> | ||
<QtDeployVerbose Condition="'$(QtDeployVerbose)' == ''" | ||
>false</QtDeployVerbose> | ||
<QtDeployVsContent Condition="'$(QtDeployVsContent)' == ''" | ||
>false</QtDeployVsContent> | ||
<QtDeployCopyFiles Condition="'$(QtDeployCopyFiles)' == ''" | ||
>false</QtDeployCopyFiles> | ||
</PropertyGroup> | ||
</Project> |
Oops, something went wrong.