1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-25 17:25:13 +03:00
This commit is contained in:
3djc 2021-01-10 08:23:48 +01:00
parent 31c20fc8eb
commit 87c9cfa610
2 changed files with 2 additions and 2 deletions

View file

@ -25,7 +25,7 @@ def build(board, translation, srcdir):
os.mkdir("output") os.mkdir("output")
path = tempfile.mkdtemp() path = tempfile.mkdtemp()
os.chdir(path) os.chdir(path)
command = "cmake %s -DTRANSLATIONS=%s -DIMRC_RELEASE=YES -DGHOST=YES -DTEST_BUILD_WARNING=YES %s" % (cmake_options, translation, srcdir) command = "cmake %s -DTRANSLATIONS=%s -DIMRC_RELEASE=YES -DGHOST=YES %s" % (cmake_options, translation, srcdir)
print(command) print(command)
os.system(command) os.system(command)
os.system("make firmware -j16") os.system("make firmware -j16")

View file

@ -25,7 +25,7 @@ def build(board, translation, srcdir):
os.mkdir("output") os.mkdir("output")
path = tempfile.mkdtemp() path = tempfile.mkdtemp()
os.chdir(path) os.chdir(path)
command = "cmake %s -DTRANSLATIONS=%s -DTBS_RELEASE=YES -DTEST_BUILD_WARNING=YES %s" % (cmake_options, translation, srcdir) command = "cmake %s -DTRANSLATIONS=%s -DTBS_RELEASE=YES %s" % (cmake_options, translation, srcdir)
print(command) print(command)
os.system(command) os.system(command)
os.system("make firmware -j16") os.system("make firmware -j16")