bf298499a0
Update all public Qt macros to use qt6/QT6 instead of qt5/QT6. Change-Id: Ib178f4fa21f37dfb8da7d4d8c097aa0e96c9d9f9 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
40 lines
753 B
CMake
40 lines
753 B
CMake
# Generated from car.pro.
|
|
|
|
cmake_minimum_required(VERSION 3.14)
|
|
project(car LANGUAGES CXX)
|
|
|
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
|
|
|
set(CMAKE_AUTOMOC ON)
|
|
set(CMAKE_AUTORCC ON)
|
|
set(CMAKE_AUTOUIC ON)
|
|
|
|
set(INSTALL_EXAMPLEDIR "examples")
|
|
|
|
find_package(Qt6 COMPONENTS DBus)
|
|
find_package(Qt6 COMPONENTS Widgets)
|
|
|
|
# special case begin
|
|
set(car_SRCS)
|
|
qt6_add_dbus_adaptor(car_SRCS
|
|
car.xml
|
|
car.h
|
|
Car
|
|
car_adaptor
|
|
)
|
|
# special case end
|
|
add_qt_gui_executable(car
|
|
car.cpp car.h
|
|
main.cpp
|
|
${car_SRCS} # special case
|
|
)
|
|
target_link_libraries(car PUBLIC
|
|
Qt::DBus
|
|
Qt::Widgets
|
|
)
|
|
install(TARGETS car
|
|
RUNTIME DESTINATION "${INSTALL_EXAMPLEDIR}"
|
|
BUNDLE DESTINATION "${INSTALL_EXAMPLEDIR}"
|
|
LIBRARY DESTINATION "${INSTALL_EXAMPLEDIR}"
|
|
)
|