gamescope/meson.build
2023-01-11 21:20:24 +00:00

70 lines
1.9 KiB
Meson

project(
'gamescope',
'c',
'cpp',
meson_version: '>=0.58.0',
default_options: [
'cpp_std=c++20',
'warning_level=2',
'force_fallback_for=wlroots,libliftoff',
],
)
add_project_arguments([
'-DWLR_USE_UNSTABLE',
], language: 'cpp')
cppc = meson.get_compiler('cpp')
data_dir = get_option('datadir')
prefix = get_option('prefix')
lib_dir = get_option('libdir')
add_project_arguments(cppc.get_supported_arguments([
'-Wno-unused-parameter',
'-Wno-missing-field-initializers',
'-Wno-c99-designator',
'-Wno-invalid-offsetof',
'-Wno-unused-const-variable',
]), language: 'cpp')
pipewire_dep = dependency('libpipewire-0.3', required: get_option('pipewire'))
librt_dep = cppc.find_library('rt', required : get_option('pipewire'))
hwdata_dep = dependency('hwdata')
dep_x11 = dependency('x11')
vulkan_dep = dependency('vulkan')
cpu_family = target_machine.cpu_family()
openvr_path_base = meson.source_root() + '/subprojects/openvr'
openvr_lib_path_base = openvr_path_base + '/lib'
if (cpu_family == 'x86_64')
openvr_lib_path = openvr_lib_path_base +'/linux64'
elif (cpu_family == 'x86')
openvr_lib_path = openvr_lib_path_base +'/linux32'
elif (cpu_family == 'aarch64')
openvr_lib_path = openvr_lib_path_base +'/linuxarm64'
endif
openvr_dep = cppc.find_library('openvr_api', dirs: openvr_lib_path, required : get_option('openvr'))
add_project_arguments(
'-DHAVE_PIPEWIRE=@0@'.format(pipewire_dep.found().to_int()),
'-DHWDATA_PNP_IDS="@0@"'.format(hwdata_dep.get_variable('pkgdatadir') / 'pnp.ids'),
language: 'cpp',
)
# Vulkan headers are installed separately from the loader (which ships the
# pkg-config file)
if not cppc.check_header('vulkan/vulkan.h', dependencies: vulkan_dep)
error('Missing vulkan-headers')
endif
subdir('protocol')
if get_option('enable_gamescope_wsi_layer')
subdir('layer')
endif
if get_option('enable_gamescope')
subdir('src')
endif