xplane-sys 4.0.109

Low-level bindings for the X-Plane plugin SDK
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# SPDX-FileCopyrightText: 2024 Julia DeMille <me@jdemille.com>
#
# SPDX-License-Identifier: MIT

xpwidgets_stub = shared_library(
    'XPWidgets_64',
    files(
        'XPUIGraphics.c',
        'XPWidgetUtils.c',
        'XPWidgets.c',
    ),
    name_prefix: '',
    include_directories: [xplm_inc, xpwidgets_inc],
    link_with: [xplm_stub],
    c_args: ['-DXPWIDGETS', '-DXPLM_DEPRECATED', '-DXPLM_LEVEL=400'],
    gnu_symbol_visibility: 'hidden',
)