qt 6.6.0 clean

This commit is contained in:
kleuter
2023-11-01 22:23:55 +01:00
parent 7b5ada15e7
commit 5d8194efa7
1449 changed files with 134276 additions and 31391 deletions

View File

@ -0,0 +1,17 @@
cmake_minimum_required(VERSION 3.16)
project(proto_project LANGUAGES CXX)
find_package(Qt6 REQUIRED COMPONENTS Protobuf Grpc)
qt_standard_project_setup()
qt_add_protobuf(proto_project
GENERATE_PACKAGE_SUBFOLDERS
PROTO_FILES
test.proto
)
target_link_libraries(proto_project
PRIVATE
Qt::Protobuf
Qt::Grpc
)

View File

@ -0,0 +1,5 @@
syntax = "proto3";
package test;
message Noop {
}