5cd7900d4f
This allows building of all the example executables at once. Task-number: QTBUG-111366 Pick-to: 6.5 Change-Id: I1fa372ec9725bfeb1f123305aa7324b7820eb593 Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
13 lines
304 B
CMake
13 lines
304 B
CMake
# Copyright (C) 2022 The Qt Company Ltd.
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
cmake_minimum_required(VERSION 3.16)
|
|
project(remotecontrolledcar LANGUAGES CXX)
|
|
|
|
find_package(Qt6 REQUIRED COMPONENTS Core DBus Gui Widgets)
|
|
|
|
qt_standard_project_setup()
|
|
|
|
add_subdirectory(car)
|
|
add_subdirectory(controller)
|