aboutsummaryrefslogtreecommitdiffstats
path: root/build_windows.bat
diff options
context:
space:
mode:
Diffstat (limited to 'build_windows.bat')
-rw-r--r--build_windows.bat12
1 files changed, 6 insertions, 6 deletions
diff --git a/build_windows.bat b/build_windows.bat
index 0b48a43..8ca6113 100644
--- a/build_windows.bat
+++ b/build_windows.bat
@@ -1,4 +1,4 @@
-:: Copyright (C) 2022 The Qt Company Ltd.
+:: Copyright (C) 2023 The Qt Company Ltd.
::
:: SPDX-License-Identifier: GPL-3.0-only WITH Qt-GPL-exception-1.0
::
@@ -8,15 +8,15 @@
mkdir build
mkdir deploy
-copy qtlicd.ini deploy\
+copy dist\qtlicd.ini deploy\
cd build
cmake .. -G "Visual Studio 17 2022"
cmake --build .
-copy Debug\qtlicd.exe ..\deploy\
-copy Debug\licheck.exe ..\deploy\
-copy mocwrapper\Debug\mocwrapper.exe ..\deploy\
-copy qtlicensetool\Debug\qtlicensetool.exe ..\deploy\
+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 ..