Skip to content

Commit

Permalink
Update build config
Browse files Browse the repository at this point in the history
  • Loading branch information
AlanoSong committed May 9, 2024
1 parent e7475d1 commit 9dd18ae
Show file tree
Hide file tree
Showing 46 changed files with 13,504 additions and 0 deletions.
23 changes: 23 additions & 0 deletions QtMsBuild/deploy/qt_import.props
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>
67 changes: 67 additions & 0 deletions QtMsBuild/deploy/qtdeploy.props
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>
Loading

0 comments on commit 9dd18ae

Please sign in to comment.