mirror of https://github.com/qt/qtgrpc.git
11 lines
299 B
CMake
11 lines
299 B
CMake
# Copyright (C) 2023 The Qt Company Ltd.
|
|
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
|
|
cmake_minimum_required(VERSION 3.16)
|
|
project(QtGrpcChat LANGUAGES CXX)
|
|
|
|
find_package(Qt6 REQUIRED COMPONENTS Qml) # Needed for deployment
|
|
|
|
add_subdirectory(server)
|
|
add_subdirectory(client)
|