Qt setup + installer (#2511)

* getting started

* setup screens

* cleanupg

* url input

* installer

* setup

* installer
old-commit-hash: 7b72bbe9f3743a16edf31c44506c7f62a43b081b
This commit is contained in:
Adeeb Shihadeh
2020-11-12 11:31:02 -08:00
committed by GitHub
parent ed4c4cd8b3
commit be77d9c02f
5 changed files with 283 additions and 0 deletions
+6
View File
@@ -1,3 +1,4 @@
import os
Import('env', 'arch', 'real_arch', 'common', 'messaging', 'gpucommon', 'visionipc', 'cereal')
qt_env = None
@@ -75,3 +76,8 @@ else:
# spinner and text window
qt_env.Program("qt/text", ["qt/text.cc"], LIBS=qt_libs + libs)
qt_env.Program("qt/spinner", ["qt/spinner.cc"], LIBS=qt_libs + libs)
# setup and installer
if "BUILD_SETUP" in os.environ:
qt_env.Program("qt/setup/setup", ["qt/setup/setup.cc"], LIBS=qt_libs + libs + ['curl'])
qt_env.Program("qt/setup/installer", ["qt/setup/installer.cc"], LIBS=qt_libs + libs)