1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-01-18 03:52:11 +01:00

uavobjects: Move generated python classes

Moved the generated python classes from the flight directory to the
ground directory since they are only used on the host, not the
embedded targets.

git-svn-id: svn://svn.openpilot.org/OpenPilot/trunk@628 ebee16cc-31ac-478f-84a7-5cbb03baadba
This commit is contained in:
stac 2010-05-16 03:05:10 +00:00 committed by stac
parent 41d60a00fa
commit 56f1e8b547
13 changed files with 2 additions and 2 deletions

View File

@ -47,11 +47,11 @@ UAVObjectGenerator::UAVObjectGenerator(QString& basepath, FILE* out) :
xmlPath = QDir( basepath + QString("ground/src/shared/uavobjectdefinition"));
flightCodePath = QDir( basepath + QString("flight/OpenPilot/UAVObjects"));
gcsCodePath = QDir( basepath + QString("ground/src/plugins/uavobjects"));
pythonTemplatePath = QDir( basepath + QString("flight/OpenPilot/UAVObjects"));
pythonTemplatePath = QDir( basepath + QString("ground/src/plugins/uavobjects"));
// synthetic output files should go into the build directory once the various GUI build systems
// learn how to find these output files in the build directory.
//pythonCodePath = QDir( basepath + QString("build/uavobjects"));
pythonCodePath = QDir( basepath + QString("flight/OpenPilot/UAVObjects"));
pythonCodePath = QDir( basepath + QString("ground/src/plugins/uavobjects"));
objectTemplateFilename = QString("uavobjecttemplate");
objectsInitTemplateFilename = QString("uavobjectsinittemplate");
objectsInitFilename = QString("uavobjectsinit");