553585e275
-changed the app name to JustMotion to match the git repository. -changed the build system away from cmake to qmake now that the app doesn't depend on openCV. -changed the build/install scripts to python based scripts which now includes the ability create an installer.
21 lines
320 B
Prolog
21 lines
320 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/services.h
|
|
|
|
SOURCES += \
|
|
src/common.cpp \
|
|
src/camera.cpp \
|
|
src/services.cpp \
|
|
src/main.cpp
|