22 lines
490 B
Plaintext
22 lines
490 B
Plaintext
HEADERS += $$PWD/appconfig.h \
|
|
$$PWD/appdata.h \
|
|
$$PWD/quihelper.h \
|
|
$$PWD/quihelperdata.h
|
|
HEADERS += $$PWD/tcpclient.h
|
|
HEADERS += $$PWD/tcpserver.h
|
|
|
|
SOURCES += $$PWD/appconfig.cpp \
|
|
$$PWD/appdata.cpp \
|
|
$$PWD/quihelper.cpp \
|
|
$$PWD/quihelperdata.cpp
|
|
SOURCES += $$PWD/tcpclient.cpp
|
|
SOURCES += $$PWD/tcpserver.cpp
|
|
|
|
contains(DEFINES, websocket) {
|
|
HEADERS += $$PWD/webclient.h
|
|
HEADERS += $$PWD/webserver.h
|
|
|
|
SOURCES += $$PWD/webclient.cpp
|
|
SOURCES += $$PWD/webserver.cpp
|
|
}
|