Skip to content

Commit 9dd18ae

Browse files
committed
Update build config
1 parent e7475d1 commit 9dd18ae

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+13504
-0
lines changed

QtMsBuild/deploy/qt_import.props

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
/***************************************************************************************************
4+
Copyright (C) 2024 The Qt Company Ltd.
5+
SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
6+
***************************************************************************************************/
7+
-->
8+
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
9+
<!--
10+
/////////////////////////////////////////////////////////////////////////////////////////////////
11+
// Qt/MSBuild import
12+
// -->
13+
<PropertyGroup>
14+
<QtMsBuildProps>
15+
$(QtMsBuildProps);
16+
$(MSBuildThisFileDirectory)qtdeploy.props
17+
</QtMsBuildProps>
18+
<QtMsBuildTargets>
19+
$(QtMsBuildTargets);
20+
$(MSBuildThisFileDirectory)qtdeploy.targets
21+
</QtMsBuildTargets>
22+
</PropertyGroup>
23+
</Project>

QtMsBuild/deploy/qtdeploy.props

+67
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
/***************************************************************************************************
4+
Copyright (C) 2024 The Qt Company Ltd.
5+
SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
6+
***************************************************************************************************/
7+
-->
8+
9+
<!--
10+
///////////////////////////////////////////////////////////////////////////////////////////////////
11+
// Deployment of Qt dependencies
12+
// -->
13+
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
14+
15+
<!--
16+
/////////////////////////////////////////////////////////////////////////////////////////////////
17+
// Default property values
18+
// -->
19+
<PropertyGroup>
20+
<QtDeploy Condition="'$(QtDeploy)' == ''">false</QtDeploy>
21+
<QtDeployEnv Condition="'$(QtDeployEnv)' == ''">VCINSTALLDIR=$(VCInstallDir)</QtDeployEnv>
22+
<QtDeployAddToolsDirToPath Condition="'$(QtDeployAddToolsDirToPath)' == ''"
23+
>true</QtDeployAddToolsDirToPath>
24+
<QtDeployFiles Condition="'$(QtDeployFiles)' == ''"
25+
>$(TargetPath)</QtDeployFiles>
26+
<QtDeployDir Condition="'$(QtDeployDir)' == '' AND '$(QtDeployToProjectDir)' == 'true'"
27+
>$(ProjectDir)</QtDeployDir>
28+
<QtDeployDir Condition="'$(QtDeployDir)' == '' AND '$(QtDeployToProjectDir)' != 'true'"
29+
>@(Qt->'%(OutDir)')</QtDeployDir>
30+
<QtDeployQmlDir Condition="'$(QtDeployQmlDir)' == ''"
31+
>$(ProjectDir)</QtDeployQmlDir>
32+
<QtDeployDebugRelease Condition="'$(QtDeployDebugRelease)' == ''"
33+
>false</QtDeployDebugRelease>
34+
<QtDeployPdb Condition="'$(QtDeployPdb)' == ''"
35+
>false</QtDeployPdb>
36+
<QtDeployForce Condition="'$(QtDeployForce)' == ''"
37+
>false</QtDeployForce>
38+
<QtDeployNoPatchQt Condition="'$(QtDeployNoPatchQt)' == ''"
39+
>false</QtDeployNoPatchQt>
40+
<QtDeployNoPlugins Condition="'$(QtDeployNoPlugins)' == ''"
41+
>false</QtDeployNoPlugins>
42+
<QtDeployNoLibraries Condition="'$(QtDeployNoLibraries)' == ''"
43+
>false</QtDeployNoLibraries>
44+
<QtDeployNoQuickImport Condition="'$(QtDeployNoQuickImport)' == ''"
45+
>false</QtDeployNoQuickImport>
46+
<QtDeployNoTranslations Condition="'$(QtDeployNoTranslations)' == ''"
47+
>false</QtDeployNoTranslations>
48+
<QtDeployNoSystemD3dCompiler Condition="'$(QtDeployNoSystemD3dCompiler)' == ''"
49+
>false</QtDeployNoSystemD3dCompiler>
50+
<QtDeployNoVirtualKeyboard Condition="'$(QtDeployNoVirtualKeyboard)' == ''"
51+
>false</QtDeployNoVirtualKeyboard>
52+
<QtDeployCompilerRuntime Condition="'$(QtDeployCompilerRuntime)' == ''"
53+
>false</QtDeployCompilerRuntime>
54+
<QtDeployWebkit2 Condition="'$(QtDeployWebkit2)' == ''"
55+
>false</QtDeployWebkit2>
56+
<QtDeployAngle Condition="'$(QtDeployAngle)' == ''"
57+
>false</QtDeployAngle>
58+
<QtDeployNoOpenglSw Condition="'$(QtDeployNoOpenglSw)' == ''"
59+
>false</QtDeployNoOpenglSw>
60+
<QtDeployVerbose Condition="'$(QtDeployVerbose)' == ''"
61+
>false</QtDeployVerbose>
62+
<QtDeployVsContent Condition="'$(QtDeployVsContent)' == ''"
63+
>false</QtDeployVsContent>
64+
<QtDeployCopyFiles Condition="'$(QtDeployCopyFiles)' == ''"
65+
>false</QtDeployCopyFiles>
66+
</PropertyGroup>
67+
</Project>

0 commit comments

Comments
 (0)