1 | // Copyright (C) 2016 The Qt Company Ltd. |
---|---|
2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 |
3 | |
4 | #include "msvc_vcxproj.h" |
5 | #include "msbuild_objectmodel.h" |
6 | |
7 | QT_BEGIN_NAMESPACE |
8 | |
9 | VcxprojGenerator::VcxprojGenerator() : VcprojGenerator() |
10 | { |
11 | } |
12 | |
13 | VCProjectWriter *VcxprojGenerator::createProjectWriter() |
14 | { |
15 | return new VCXProjectWriter; |
16 | } |
17 | |
18 | QT_END_NAMESPACE |
19 |