2020-12-10 03:28:15 +00:00
|
|
|
|
2020-12-10 04:44:35 +00:00
|
|
|
Import("projenv")
|
2020-12-10 03:28:15 +00:00
|
|
|
|
2020-12-10 04:44:35 +00:00
|
|
|
import configparser
|
2020-12-10 05:17:43 +00:00
|
|
|
prefsLoc = projenv["PROJECT_DIR"] + "/version.properties"
|
2020-12-10 06:04:19 +00:00
|
|
|
config = configparser.RawConfigParser()
|
|
|
|
config.read(prefsLoc)
|
|
|
|
version = dict(config.items('VERSION'))
|
|
|
|
verStr = "{}.{}.{}".format(version["major"], version["minor"], version["build"])
|
2020-12-10 03:28:15 +00:00
|
|
|
|
2020-12-25 02:16:49 +00:00
|
|
|
print("Using meshtastic platform-custom.py, firmare version " + verStr)
|
2020-12-10 03:28:15 +00:00
|
|
|
|
|
|
|
# General options that are passed to the C and C++ compilers
|
|
|
|
projenv.Append(CCFLAGS=[
|
|
|
|
f"-DAPP_VERSION={verStr}"
|
2020-12-10 05:17:43 +00:00
|
|
|
])
|