Commit 60a06d6a authored by Don Gagne's avatar Don Gagne

Merge branch 'UnitTestFixes' of https://github.com/DonLakeFlyer/qgroundcontrol into UnitTestFixes

Conflicts:
	qgroundcontrol.pri
parents 7d136aca 694091f9
This diff is collapsed.
...@@ -32,8 +32,15 @@ QT += network \ ...@@ -32,8 +32,15 @@ QT += network \
sql \ sql \
declarative declarative
TEMPLATE = app # Setting this define allows you to include this .pro file in another such that
TARGET = qgroundcontrol # you can set your own TARGET and main() function. This is used by the unit test
# build files to build unit test using all built parts of QGCS except for main.
isEmpty(QGCS_UNITTEST_OVERRIDE) {
TEMPLATE = app
TARGET = qgroundcontrol
SOURCES += src/main.cc
}
BASEDIR = $${IN_PWD} BASEDIR = $${IN_PWD}
linux-g++|linux-g++-64{ linux-g++|linux-g++-64{
debug { debug {
...@@ -556,7 +563,7 @@ contains(DEPENDENCIES_PRESENT, libfreenect) { ...@@ -556,7 +563,7 @@ contains(DEPENDENCIES_PRESENT, libfreenect) {
# Enable only if libfreenect is available # Enable only if libfreenect is available
HEADERS += src/input/Freenect.h HEADERS += src/input/Freenect.h
} }
SOURCES += src/main.cc \ SOURCES += \
src/QGCCore.cc \ src/QGCCore.cc \
src/uas/UASManager.cc \ src/uas/UASManager.cc \
src/uas/UAS.cc \ src/uas/UAS.cc \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment