mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2025-01-24 12:54:29 +08:00
17 lines
406 B
CMake
17 lines
406 B
CMake
|
# Copyright (C) 2022 The Qt Company Ltd.
|
||
|
# SPDX-License-Identifier: BSD-3-Clause
|
||
|
|
||
|
#####################################################################
|
||
|
## copier Binary:
|
||
|
#####################################################################
|
||
|
|
||
|
set(args OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}")
|
||
|
|
||
|
qt_internal_add_executable(copier
|
||
|
${args}
|
||
|
SOURCES
|
||
|
main.cpp
|
||
|
LIBRARIES
|
||
|
Qt::Gui
|
||
|
)
|