Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mesa
Path: blob/21.2-virgl/src/android_stub/meson.build
4558 views
1
if with_android_stub
2
stub_libs = []
3
4
foreach lib : ['backtrace', 'cutils']
5
stub_libs += static_library(
6
lib,
7
files(lib + '_stub.cpp'),
8
include_directories : inc_include,
9
install : false,
10
)
11
endforeach
12
13
foreach lib : ['hardware']
14
stub_libs += shared_library(
15
lib,
16
files(lib + '_stub.cpp'),
17
include_directories : inc_include,
18
install : false,
19
)
20
endforeach
21
22
dep_android = declare_dependency(
23
link_with : stub_libs,
24
dependencies : [
25
dependency('log'),
26
dependency('sync'),
27
dependency('nativewindow'),
28
]
29
)
30
endif
31
32