2022-07-05 11:26:52 +00:00
|
|
|
# Copyright (C) 2022 The Qt Company Ltd.
|
2022-08-19 13:21:34 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
2022-07-05 11:26:52 +00:00
|
|
|
|
2021-08-16 16:14:46 +00:00
|
|
|
cmake_minimum_required(VERSION 3.16)
|
2021-12-08 11:57:10 +00:00
|
|
|
project(complexpingpong LANGUAGES CXX)
|
2020-07-07 13:24:45 +00:00
|
|
|
|
2023-08-14 07:06:33 +00:00
|
|
|
if (ANDROID)
|
|
|
|
message(FATAL_ERROR "This project cannot be built on Android.")
|
|
|
|
endif()
|
|
|
|
|
2020-07-07 13:24:45 +00:00
|
|
|
if(NOT DEFINED INSTALL_EXAMPLESDIR)
|
2021-12-08 11:57:10 +00:00
|
|
|
set(INSTALL_EXAMPLESDIR "examples")
|
2020-07-07 13:24:45 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
set(INSTALL_EXAMPLEDIR "${INSTALL_EXAMPLESDIR}/dbus/complexpingpong")
|
|
|
|
|
2021-12-02 07:54:27 +00:00
|
|
|
find_package(Qt6 REQUIRED COMPONENTS Core DBus)
|
2020-07-07 13:24:45 +00:00
|
|
|
|
2022-11-15 21:00:14 +00:00
|
|
|
qt_standard_project_setup()
|
|
|
|
|
2020-10-16 09:55:24 +00:00
|
|
|
qt_add_executable(complexping
|
2020-07-07 13:24:45 +00:00
|
|
|
complexping.cpp complexping.h
|
|
|
|
ping-common.h
|
|
|
|
)
|
|
|
|
|
2021-12-08 11:57:10 +00:00
|
|
|
target_link_libraries(complexping PRIVATE
|
|
|
|
Qt6::Core
|
|
|
|
Qt6::DBus
|
2020-07-07 13:24:45 +00:00
|
|
|
)
|
2019-06-04 15:08:47 +00:00
|
|
|
|
2020-10-16 09:55:24 +00:00
|
|
|
qt_add_executable(complexpong
|
2019-06-04 15:08:47 +00:00
|
|
|
complexpong.cpp complexpong.h
|
|
|
|
)
|
2021-12-08 11:57:10 +00:00
|
|
|
|
|
|
|
target_link_libraries(complexpong PRIVATE
|
|
|
|
Qt6::Core
|
|
|
|
Qt6::DBus
|
2019-06-04 15:08:47 +00:00
|
|
|
)
|
2020-07-07 13:24:45 +00:00
|
|
|
|
2021-12-08 11:57:10 +00:00
|
|
|
install(TARGETS complexping complexpong
|
2019-06-04 15:08:47 +00:00
|
|
|
RUNTIME DESTINATION "${INSTALL_EXAMPLEDIR}"
|
|
|
|
BUNDLE DESTINATION "${INSTALL_EXAMPLEDIR}"
|
2019-06-12 08:21:40 +00:00
|
|
|
LIBRARY DESTINATION "${INSTALL_EXAMPLEDIR}"
|
2019-03-18 18:26:24 +00:00
|
|
|
)
|