mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-11-30 08:24:11 +01:00
3e815ca8d5
This changeset: - moves all ground targets one level up, under build directory. The build/ground was created as a workaround, now unnecessary; - fixes QtCreator builds, they are separated from command line builds; - moves GCS autogenerated files into openpilotgcs-synthetics directory. The resulting build subdirectory now looks like: build openpilotgcs <- Qt-Creator build directory openpilotgcs-synthetics <- version-info and opfw_resource openpilotgcs_debug openpilotgcs_release <- Makefile build directory uavobject-synthetics uavobjgenerator NOTE: you should update the shadow build path in QtCreator to build, not build/ground as before. +review OPReview
23 lines
566 B
Prolog
23 lines
566 B
Prolog
#
|
|
# Qmake project for the OpenPilot GCS.
|
|
# Copyright (c) 2009-2013, The OpenPilot Team, http://www.openpilot.org
|
|
#
|
|
|
|
#version check qt
|
|
contains(QT_VERSION, ^4\\.[0-5]\\..*) {
|
|
message("Cannot build OpenPilot GCS with Qt version $${QT_VERSION}.")
|
|
error("Cannot build OpenPilot GCS with Qt version $${QT_VERSION}. Use at least Qt 4.6!")
|
|
}
|
|
|
|
include(openpilotgcs.pri)
|
|
|
|
TEMPLATE = subdirs
|
|
CONFIG += ordered
|
|
|
|
DEFINES += USE_PATHPLANNER
|
|
|
|
SUBDIRS = src share copydata
|
|
unix:!macx:!isEmpty(copydata):SUBDIRS += bin
|
|
|
|
copydata.file = copydata.pro
|