qt/ledset/ledset.pro

87 lines
1.7 KiB
Prolog
Raw Normal View History

2022-08-25 18:43:03 +08:00
QT += core gui
QT += network
QT += widgets
CONFIG += c++11
CONFIG += lrelease
CONFIG += embed_translations
# You can make your code fail to compile if it uses deprecated APIs.
# In order to do so, uncomment the following line.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
2023-03-20 11:30:19 +08:00
INCLUDEPATH += $$PWD/WpdPack_4_1_2/Include
LIBS += -L$$PWD/WpdPack_4_1_2/Lib/\
-lwpcap\
-lpacket
-lWs2_32
2022-08-25 18:43:03 +08:00
msvc {
QMAKE_CXXFLAGS += -execution-charset:utf-8
QMAKE_CXXFLAGS += -source-charset:utf-8
CONFIG += force_debug_info
CONFIG += separate_debug_info
}
win* {
LIBS += -lDbghelp
}
win32 {
2022-09-26 18:10:47 +08:00
QMAKE_LFLAGS += /LARGEADDRESSAWARE
2022-08-25 18:43:03 +08:00
}
SOURCES += \
basewin.cpp \
brightwin.cpp \
crc.c \
2022-08-26 23:15:25 +08:00
expertscreenconnwin.cpp \
2022-08-25 18:43:03 +08:00
expertsmartpointsetwin.cpp \
expertwin.cpp \
fast.cpp \
2022-12-16 15:08:53 +08:00
globalfunc.cpp \
2022-08-25 18:43:03 +08:00
gqt.cpp \
main.cpp \
mainwin.cpp \
2023-03-20 11:30:19 +08:00
pcaprethread.cpp \
2022-08-25 18:43:03 +08:00
pcapwin.cpp \
screenunit.cpp \
table.cpp \
videowin.cpp
2022-08-25 18:43:03 +08:00
HEADERS += \
basewin.h \
brightwin.h \
crc.h \
2022-08-26 23:15:25 +08:00
expertscreenconnwin.h \
2022-08-25 18:43:03 +08:00
expertsmartpointsetwin.h \
expertwin.h \
fast.h \
2022-12-16 15:08:53 +08:00
globalfunc.h \
2022-08-25 18:43:03 +08:00
gqt.h \
mainwin.h \
2023-03-20 11:30:19 +08:00
pcaprethread.h \
2022-08-25 18:43:03 +08:00
pcapwin.h \
screenunit.h \
table.h \
videowin.h
2022-08-25 18:43:03 +08:00
TRANSLATIONS += \
translations/app_en.ts
EXTRA_TRANSLATIONS += \
translations/qt_zh_CN.ts \
translations/qt_zh_TW.ts \
translations/qt_ja.ts \
translations/qt_en.ts
RESOURCES += \
res.qrc
RC_ICONS = 128.ico
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target