mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2025-02-01 17:52:12 +01:00
7195862d77
This will allow us to build a parent project for qt-creator that sits above both openpilotgcs and uavobjgenerator so that we can build both projects at the same time. git-svn-id: svn://svn.openpilot.org/OpenPilot/trunk@2528 ebee16cc-31ac-478f-84a7-5cbb03baadba
43 lines
1.2 KiB
Prolog
43 lines
1.2 KiB
Prolog
# -------------------------------------------------
|
|
# Project created by QtCreator 2010-03-13T15:17:38
|
|
# -------------------------------------------------
|
|
QT -= gui
|
|
TARGET = uavobjectstest
|
|
CONFIG += console
|
|
CONFIG -= app_bundle
|
|
TEMPLATE = app
|
|
SOURCES += main.cpp \
|
|
../uavobjectmanager.cpp \
|
|
../uavobjectfield.cpp \
|
|
../uavobject.cpp \
|
|
../uavmetaobject.cpp \
|
|
../uavdataobject.cpp \
|
|
uavobjectstest.cpp \
|
|
../uavobjectfieldenum.cpp \
|
|
../uavobjectfieldstring.cpp \
|
|
../exampleobject1.cpp \
|
|
../uavobjectfielduint32.cpp \
|
|
../uavobjectfielduint16.cpp \
|
|
../uavobjectfielduint8.cpp \
|
|
../uavobjectfieldint32.cpp \
|
|
../uavobjectfieldint16.cpp \
|
|
../uavobjectfieldint8.cpp \
|
|
../uavobjectfieldfloat.cpp
|
|
HEADERS += ../uavobjectmanager.h \
|
|
../uavobjectfield.h \
|
|
../uavobject.h \
|
|
../uavmetaobject.h \
|
|
../uavdataobject.h \
|
|
uavobjectstest.h \
|
|
../uavobjectfieldenum.h \
|
|
../uavobjectfieldstring.h \
|
|
../exampleobject1.h \
|
|
../uavobjectfielduint32.h \
|
|
../uavobjectfielduint16.h \
|
|
../uavobjectfielduint8.h \
|
|
../uavobjectfields.h \
|
|
../uavobjectfieldint32.h \
|
|
../uavobjectfieldint16.h \
|
|
../uavobjectfieldint8.h \
|
|
../uavobjectfieldfloat.h
|