File: CMakeLists.txt

package info (click to toggle)
qt6-remoteobjects 6.10.2-2
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 3,812 kB
  • sloc: cpp: 20,894; sh: 29; makefile: 26
file content (18 lines) | stat: -rw-r--r-- 474 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: BSD-3-Clause


#####################################################################
## proxy Binary:
#####################################################################

qt_internal_add_executable(proxy
    OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/"
    SOURCES
        main.cpp
    INCLUDE_DIRECTORIES
        ${CMAKE_CURRENT_SOURCE_DIR}
    LIBRARIES
        Qt::RemoteObjects
        Qt::Test
)