daad0dffa2
-re-added recordloop as a thread within the app. -the app no longer use mutiple services and will instead fully operate in a single master service. -build/install.py will now install the app as a single service. -added/updated -s, -r and -q options to manage the single master service.
27 lines
476 B
Prolog
27 lines
476 B
Prolog
QT -= gui
|
|
|
|
CONFIG += c++11 console
|
|
CONFIG -= app_bundle
|
|
|
|
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/record_loop.h
|
|
|
|
SOURCES += \
|
|
src/common.cpp \
|
|
src/camera.cpp \
|
|
src/detect_loop.cpp \
|
|
src/event_loop.cpp \
|
|
src/proc_control.cpp \
|
|
src/record_loop.cpp \
|
|
src/main.cpp
|