28 lines
616 B
Prolog
28 lines
616 B
Prolog
QT = core
|
|
|
|
CONFIG += c++17 cmdline
|
|
|
|
QMAKE_CXXFLAGS += -Wno-deprecated-declarations
|
|
|
|
SOURCES += main.cpp \
|
|
camera.cpp \
|
|
camera_info.cpp \
|
|
http_server.cpp \
|
|
mongoose.c
|
|
|
|
INCLUDEPATH += $$PWD/include
|
|
|
|
HEADERS += $$PWD/include/*.h \
|
|
$$PWD/include/spdlog/*.h \
|
|
camera.h \
|
|
camera_info.h \
|
|
http_server.h
|
|
|
|
unix {
|
|
LIBS += -L/home/linq/workspace/java/linux-x86-64 -lsadp -lhcnetsdk -lhk_log -lhk_common -lhk_net -l hk_net_video_stream -lHKNetDeviceSDK
|
|
}
|
|
|
|
qnx: target.path = /tmp/$${TARGET}/bin
|
|
else: unix:!android: target.path = /opt/$${TARGET}/bin
|
|
!isEmpty(target.path): INSTALLS += target
|