Files
graphene/python/meson.build
Wojtek Porczyk a1c87af7d3 [meson] Add build options: direct, sgx
This is to choose which PALs are to be build and installed. Currently
build happens outside of meson, so this only affects installing and not
building, but if one PAL was not built, then meson would fail because it
won't find the dependency.
2020-12-02 22:45:07 +01:00

9 lines
162 B
Meson

subdir('graphenelibos')
if sgx
install_data([
'graphene-sgx-get-token',
'graphene-sgx-sign',
], install_dir: get_option('bindir'))
endif