From cb234d324cfd9fe0eeaae8bfd55629186458394f Mon Sep 17 00:00:00 2001 From: stac Date: Sat, 22 Jan 2011 17:41:53 +0000 Subject: [PATCH] build: Add meta-project for all software needed by GCS This meta-project allows qt-creator users to open and configure a single project and to build all required software to produce a GCS. This includes regenerating all uavobject output. NOTE: To use this meta-project, you MUST perform these steps once for each SVN checkout: - Open /ground/ground.pro in qt-creator - Select the "Projects" tab - Under Build Settings/General heading, click "Show Details" - Activate "Shadow Build" - Set your Build Directory to /build/ground = The full path to the base of your svn tree which should contain "flight", "ground", etc. git-svn-id: svn://svn.openpilot.org/OpenPilot/trunk@2531 ebee16cc-31ac-478f-84a7-5cbb03baadba --- ground/ground.pro | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 ground/ground.pro diff --git a/ground/ground.pro b/ground/ground.pro new file mode 100644 index 000000000..3c2273ecd --- /dev/null +++ b/ground/ground.pro @@ -0,0 +1,22 @@ +# +# Top level Qt-Creator project file +# + +TEMPLATE = subdirs + +SUBDIRS = \ + sub_openpilotgcs \ + sub_uavobjects \ + sub_uavobjgenerator + +# uavobjgenerator +sub_uavobjgenerator.subdir = uavobjgenerator + +# uavobjects +sub_uavobjects.subdir = uavobjects +sub_uavobjects.depends = sub_uavobjgenerator + +# openpilotgcs +sub_openpilotgcs.subdir = openpilotgcs +sub_openpilotgcs.depends = sub_uavobjects +