1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-01-30 15:52:12 +01:00

Make names configurable with config file

This commit is contained in:
James Duley 2015-07-20 00:33:27 +12:00
parent 9097c8b118
commit 1934dbc427

View File

@ -60,10 +60,10 @@ smallify = $(subst $(SPACE),-,$(call lc,$1))
# Naming for binaries and packaging etc,.
ORG_BIG_NAME := LibrePilot
GCS_BIG_NAME := ${ORG_BIG_NAME} GCS
GCS_BIG_NAME = ${ORG_BIG_NAME} GCS
# These should be lowercase with no spaces
ORG_SMALL_NAME := $(call smallify,$(ORG_BIG_NAME))
GCS_SMALL_NAME := $(call smallify,$(GCS_BIG_NAME))
ORG_SMALL_NAME = $(call smallify,$(ORG_BIG_NAME))
GCS_SMALL_NAME = $(call smallify,$(GCS_BIG_NAME))
# Set up default build configurations (debug | release)
GCS_BUILD_CONF := release