56 lines
1.7 KiB
Prolog
56 lines
1.7 KiB
Prolog
#QT += Network
|
|
QT += gui declarative network
|
|
|
|
HEADERS += \
|
|
Sources/MasterCtrl.h \
|
|
Sources/GlobalDefine.h \
|
|
Sources/485NetworkCommIF.h \
|
|
Sources/EthernetNetworkCommIF.h \
|
|
Sources/232NetworkCommIF.h \
|
|
Sources/NetworkProtocol.h \
|
|
Sources/DeadboltDevice.h \
|
|
Sources/AVReceiverDevice.h \
|
|
Sources/VoipSMS/VoipMsSMSClient.h \
|
|
Sources/VoipSMS/CSMSMessage.h \
|
|
Sources/Gui/SystemTrayManager.h \
|
|
Sources/Gui/SettingsWindow.h \
|
|
Sources/ProgramSettings.h \
|
|
Sources/Gui/AppIconWidget.h \
|
|
Sources/ProtocolDefs.h \
|
|
Sources/EthernetNetworkServer.h \
|
|
Sources/NetworkDevicesMgr.h \
|
|
Sources/SMSDevice.h \
|
|
Sources/NetworkDevice.h \
|
|
Sources/AbstractNetworkInterface.h
|
|
|
|
SOURCES += \
|
|
Sources/main.cpp \
|
|
Sources/MasterCtrl.cpp \
|
|
Sources/485NetworkCommIF.cpp \
|
|
Sources/232NetworkCommIF.cpp \
|
|
Sources/EthernetNetworkCommIF.cpp \
|
|
Sources/NetworkProtocol.cpp \
|
|
Sources/DeadboltDevice.cpp \
|
|
Sources/AVReceiverDevice.cpp \
|
|
Sources/VoipSMS/VoipMsSMSClient.cpp \
|
|
Sources/VoipSMS/CSMSMessage.cpp \
|
|
Sources/Gui/SystemTrayManager.cpp \
|
|
Sources/Gui/SettingsWindow.cpp \
|
|
Sources/ProgramSettings.cpp \
|
|
Sources/Gui/AppIconWidget.cpp \
|
|
Sources/EthernetNetworkServer.cpp \
|
|
Sources/NetworkDevicesMgr.cpp \
|
|
Sources/SMSDevice.cpp \
|
|
Sources/NetworkDevice.cpp
|
|
|
|
|
|
#win32:SOURCES += $$PWD/Source/qextserialport/win_qextserialport.cpp \
|
|
# $$PWD/Source/qextserialport/qextserialenumerator_win.cpp
|
|
#win32:DEFINES += _TTY_WIN_ WINVER=0x0501
|
|
|
|
INCLUDEPATH += $$PWD/ \
|
|
$$PWD/Sources/ \
|
|
$$PWD/Sources/qextserialport/ \
|
|
$$PWD/Sources/VoipSMS/ \
|
|
$$PWD/Sources/Gui/
|