123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- QT -= gui
- CONFIG += c++11 console
- CONFIG -= app_bundle
- DEFINES += QT_DEPRECATED_WARNINGS
- SOURCES += \
- main.cpp \
- globalenumssamenamespace.grpc.pb.cc \
- globalenumssamenamespace.pb.cc \
- globalenums.grpc.pb.cc \
- simpletest.grpc.pb.cc \
- simpletest.pb.cc \
- testservice.grpc.pb.cc \
- testservice.pb.cc \
- globalenums.pb.cc
- qnx: target.path = /tmp/$${TARGET}/bin
- else: unix:!android: target.path = /opt/$${TARGET}/bin
- HEADERS += \
- helloworld.grpc.pb.h \
- helloworld.pb.h \
- globalenumssamenamespace.grpc.pb.h \
- globalenumssamenamespace.pb.h \
- globalenums.grpc.pb.h \
- simpletest.grpc.pb.h \
- simpletest.pb.h \
- testservice.grpc.pb.h \
- testservice.pb.h \
- globalenums.pb.h
- LIBS += -lgrpc++ -lprotobuf
|