Digitalisierte Elektroverteilung zur permanenten Verbraucherüberwachung
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

asio_inet_client_server.pro 541B

12345678910111213141516171819202122232425262728293031323334
  1. CONFIG -= qt
  2. TEMPLATE = lib
  3. CONFIG += staticlib
  4. CONFIG += c++17
  5. INCLUDEPATH += ../EasyLoggingPP
  6. unix: CONFIG += link_pkgconfig
  7. unix: PKGCONFIG += libasio
  8. SOURCES += \
  9. LIBS += -pthread
  10. HEADERS += \
  11. net_server_client.h \
  12. src/net_client.h \
  13. src/net_common.h \
  14. src/net_connection.h \
  15. src/net_dequeue_ts.h \
  16. src/net_message.h \
  17. src/net_message_types.h \
  18. src/net_server.h
  19. # Default rules for deployment.
  20. unix {
  21. target.path = $$[QT_INSTALL_PLUGINS]/generic
  22. }
  23. !isEmpty(target.path): INSTALLS += target