mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2025-02-10 00:54:15 +01:00
GCS/serialconnection: added a new connection plugin for serial port git-svn-id: svn://svn.openpilot.org/OpenPilot/trunk@483 ebee16cc-31ac-478f-84a7-5cbb03baadba
72 lines
1.9 KiB
Prolog
72 lines
1.9 KiB
Prolog
# USE .subdir AND .depends !
|
|
# OTHERWISE PLUGINS WILL BUILD IN WRONG ORDER (DIRECTORIES ARE COMPILED IN PARALLEL)
|
|
|
|
TEMPLATE = subdirs
|
|
|
|
SUBDIRS = plugin_coreplugin
|
|
|
|
# Blank Template Plugin, not compiled by default
|
|
#SUBDIRS += plugin_donothing
|
|
#plugin_donothing.subdir = donothing
|
|
#plugin_donothing.depends = plugin_coreplugin
|
|
|
|
# Core Plugin
|
|
plugin_coreplugin.subdir = coreplugin
|
|
|
|
# Welcome Plugin
|
|
plugin_welcome.subdir = welcome
|
|
plugin_welcome.depends = plugin_coreplugin
|
|
SUBDIRS += plugin_welcome
|
|
|
|
# RawHID connection plugin
|
|
SUBDIRS += plugin_rawhid
|
|
plugin_rawhid.subdir = rawhid
|
|
plugin_rawhid.depends = plugin_coreplugin
|
|
|
|
# Serial port connection plugin
|
|
SUBDIRS += plugin_serial
|
|
plugin_serial.subdir = serialconnection
|
|
plugin_serial.depends = plugin_coreplugin
|
|
|
|
# UAVObjects plug-in
|
|
SUBDIRS += plugin_uavobjects
|
|
plugin_uavobjects.subdir = uavobjects
|
|
plugin_uavobjects.depends = plugin_coreplugin
|
|
|
|
# UAVTalk plug-in
|
|
SUBDIRS += plugin_uavtalk
|
|
plugin_uavtalk.subdir = uavtalk
|
|
plugin_uavtalk.depends = plugin_uavobjects
|
|
plugin_uavtalk.depends += plugin_coreplugin
|
|
|
|
# Empty UAVGadget
|
|
plugin_emptygadget.subdir = emptygadget
|
|
plugin_emptygadget.depends = plugin_coreplugin
|
|
SUBDIRS += plugin_emptygadget
|
|
|
|
# Map UAVGadget
|
|
plugin_map.subdir = map
|
|
plugin_map.depends = plugin_coreplugin
|
|
SUBDIRS += plugin_map
|
|
|
|
# Scope UAVGadget
|
|
plugin_scope.subdir = scope
|
|
plugin_scope.depends = plugin_coreplugin
|
|
SUBDIRS += plugin_scope
|
|
|
|
# ModelView UAVGadget
|
|
plugin_modelview.subdir = modelview
|
|
plugin_scope.depends = plugin_coreplugin
|
|
SUBDIRS += plugin_modelview
|
|
|
|
# UAVObject Browser Gadget
|
|
plugin_uavobjectbrowser.subdir = uavobjectbrowser
|
|
plugin_uavobjectbrowser.depends = plugin_coreplugin
|
|
plugin_uavobjectbrowser.depends = plugin_uavobjects
|
|
SUBDIRS += plugin_uavobjectbrowser
|
|
|
|
#Uploader Gadget
|
|
plugin_uploader.subdir = uploader
|
|
plugin_uploader.depends = plugin_coreplugin
|
|
SUBDIRS += plugin_uploader
|