blob: 8ca6113abf36ca52985b10ba3a046ea5fb70d2ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
:: Copyright (C) 2023 The Qt Company Ltd.
::
:: SPDX-License-Identifier: GPL-3.0-only WITH Qt-GPL-exception-1.0
::
@echo off
mkdir build
mkdir deploy
copy dist\qtlicd.ini deploy\
cd build
cmake .. -G "Visual Studio 17 2022"
cmake --build .
copy bin\Debug\qtlicd.exe ..\deploy\
copy bin\Debug\licheck.exe ..\deploy\
copy bin\Debug\mocwrapper.exe ..\deploy\
copy bin\Debug\qtlicensetool.exe ..\deploy\
cd ..
|