12345678910111213141516171819202122232425262728293031323334 |
- CONFIG -= qt
-
- TEMPLATE = lib
- CONFIG += staticlib
-
- CONFIG += c++17
-
- INCLUDEPATH += ../EasyLoggingPP
-
- unix: CONFIG += link_pkgconfig
- unix: PKGCONFIG += libasio
-
-
- SOURCES += \
-
- LIBS += -pthread
-
-
- HEADERS += \
- net_server_client.h \
- src/net_client.h \
- src/net_common.h \
- src/net_connection.h \
- src/net_dequeue_ts.h \
- src/net_message.h \
- src/net_message_types.h \
- src/net_server.h
-
-
- # Default rules for deployment.
- unix {
- target.path = $$[QT_INSTALL_PLUGINS]/generic
- }
- !isEmpty(target.path): INSTALLS += target
|