mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-06-22 05:52:08 +08:00
754dd45ffa
* 2eedcd90-b7db-46cb-86be-740f48ded7ab/700 * noop ciao * here too * mapsd too * update translations * disable mapsd test from test onroad * disable mapRenderState test from timings * lint * fix exp mode toggle panel * update tr * french done * dont build mapd * only no nav * just comment * deprecate nav fields * rm not comment * dont deprecate too much * remove from services * merge cereal
21 lines
918 B
Python
21 lines
918 B
Python
Import('qt_env', 'arch', 'common', 'messaging', 'visionipc', 'cereal', 'transformations')
|
|
|
|
map_env = qt_env.Clone()
|
|
libs = ['qt_widgets', 'qt_util', 'QMapLibre', common, messaging, cereal, visionipc, transformations,
|
|
'zmq', 'capnp', 'kj', 'm', 'OpenCL', 'ssl', 'crypto', 'pthread', 'json11'] + map_env["LIBS"]
|
|
if arch == 'larch64':
|
|
libs.append(':libEGL_mesa.so.0')
|
|
|
|
if arch in ['larch64', 'aarch64', 'x86_64']:
|
|
if arch == 'x86_64':
|
|
rpath = Dir(f"#third_party/maplibre-native-qt/{arch}/lib").srcnode().abspath
|
|
map_env["RPATH"] += [rpath, ]
|
|
|
|
style_path = File("style.json").abspath
|
|
map_env['CXXFLAGS'].append(f'-DSTYLE_PATH=\\"{style_path}\\"')
|
|
|
|
map_env["RPATH"].append(Dir('.').abspath)
|
|
map_env["LIBPATH"].append(Dir('.').abspath)
|
|
maplib = map_env.SharedLibrary("maprender", ["map_renderer.cc"], LIBS=libs)
|
|
# map_env.Program("mapsd", ["main.cc", ], LIBS=[maplib[0].get_path(), ] + libs)
|