-created an internal ram disk to buffer streaming from the cameras -the internal ram disk now directly send finished files to detect loop instead of relying on directory listing
31 lines
537 B
Prolog
31 lines
537 B
Prolog
QT -= gui
|
|
|
|
CONFIG += c++11 console
|
|
CONFIG -= app_bundle
|
|
|
|
LIBS += -lfuse3
|
|
|
|
TARGET = build/jmotion
|
|
OBJECTS_DIR = build
|
|
MOC_DIR = build
|
|
RCC_DIR = build
|
|
|
|
HEADERS += \
|
|
src/common.h \
|
|
src/camera.h \
|
|
src/detect_loop.h \
|
|
src/event_loop.h \
|
|
src/proc_control.h \
|
|
src/ram_disk.h \
|
|
src/record_loop.h
|
|
|
|
SOURCES += \
|
|
src/common.cpp \
|
|
src/camera.cpp \
|
|
src/detect_loop.cpp \
|
|
src/event_loop.cpp \
|
|
src/proc_control.cpp \
|
|
src/ram_disk.cpp \
|
|
src/record_loop.cpp \
|
|
src/main.cpp
|