Skip to content

Commit

Permalink
Organized project sources
Browse files Browse the repository at this point in the history
  • Loading branch information
kekiefer committed Dec 15, 2016
1 parent ead2182 commit f87df46
Show file tree
Hide file tree
Showing 29 changed files with 26 additions and 20 deletions.
40 changes: 21 additions & 19 deletions GetThermal.pro
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,24 @@ QT_CONFIG -= no-pkg-config
CONFIG += c++11 \
link_pkgconfig

SOURCES += main.cpp \
uvcvideoproducer.cpp \
uvcacquisition.cpp \
uvcbuffer.cpp \
leptonvariation.cpp \
abstractccinterface.cpp \
SOURCES += \
src/main.cpp \
src/uvcvideoproducer.cpp \
src/uvcacquisition.cpp \
src/uvcbuffer.cpp \
src/leptonvariation.cpp \
src/abstractccinterface.cpp \
lepton_sdk/Src/LEPTON_AGC.c \
lepton_sdk/Src/LEPTON_OEM.c \
lepton_sdk/Src/LEPTON_RAD.c \
lepton_sdk/Src/LEPTON_SDK.c \
lepton_sdk/Src/LEPTON_SYS.c \
lepton_sdk/Src/LEPTON_VID.c \
lepton_sdk/Src/crc16fast.c \
dataformatter.cpp \
rangeprovider.cpp
src/dataformatter.cpp \
src/rangeprovider.cpp

RESOURCES += qml.qrc
RESOURCES += qml/qml.qrc

# Additional import path used to resolve QML modules in Qt Creator's code model
QML_IMPORT_PATH =
Expand All @@ -29,11 +30,11 @@ QML_IMPORT_PATH =
include(deployment.pri)

HEADERS += \
uvcvideoproducer.h \
uvcbuffer.h \
uvcacquisition.h \
leptonvariation.h \
abstractccinterface.h \
inc/uvcvideoproducer.h \
inc/uvcbuffer.h \
inc/uvcacquisition.h \
inc/leptonvariation.h \
inc/abstractccinterface.h \
lepton_sdk/Inc/LEPTON_AGC.h \
lepton_sdk/Inc/LEPTON_ErrorCodes.h \
lepton_sdk/Inc/LEPTON_Macros.h \
Expand All @@ -46,12 +47,12 @@ HEADERS += \
lepton_sdk/Inc/LEPTON_VID.h \
lepton_sdk/Inc/crc16.h \
lepton_sdk/Inc/uvc_sdk.h \
leptonvariation_types.h \
dataformatter.h \
rangeprovider.h
inc/leptonvariation_types.h \
inc/dataformatter.h \
inc/rangeprovider.h

DISTFILES += \
qtquickcontrols2.conf
qml/qtquickcontrols2.conf

PKGCONFIG += libusb-1.0 opencv

Expand All @@ -63,7 +64,8 @@ else:unix: LIBS += -L$$PWD/libuvc/build/ -luvc

INCLUDEPATH += $$PWD/lepton_sdk/Inc \
$$PWD/libuvc/build/include \
$$PWD/libuvc/include
$$PWD/libuvc/include \
$$PWD/inc
DEPENDPATH += $$PWD/libuvc/build/include \
$$PWD/libuvc/include

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 2 additions & 1 deletion RangeDisplay.qml → qml/RangeDisplay.qml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ Item {
MouseArea {
anchors.fill: parent
onClicked: farenheitTemps = !farenheitTemps
}
}
}

}
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 3 additions & 0 deletions ViewerForm.ui.qml → qml/ViewerForm.ui.qml
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,8 @@ Item {
}




Pane {
width: 130
Layout.minimumWidth: 130
Expand All @@ -138,6 +140,7 @@ Item {
acq: acq
}
}

}

}
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit f87df46

Please sign in to comment.