summaryrefslogtreecommitdiffstats
path: root/gfx/vr/service/openvr/moz.build
blob: 5ad6d0b9b457b0d992b464fedfbe663763ed3cbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
# vim: set filetype=python:
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

FINAL_LIBRARY = 'xul'

DEFINES['VR_API_PUBLIC'] = True

# Windows.h wrappers conflict with internal methods in openvr
DEFINES['MOZ_DISABLE_WINDOWS_WRAPPER'] = True

if CONFIG['OS_ARCH'] == 'WINNT':
    if CONFIG['HAVE_64BIT_BUILD']:
        DEFINES['WIN64'] = True
    else:
        DEFINES['WIN32'] = True

if CONFIG['OS_ARCH'] == 'Darwin':
    DEFINES['POSIX'] = True
    DEFINES['OSX'] = True
    if CONFIG['CC_TYPE'] in ('clang', 'gcc'):
        CXXFLAGS += ['-xobjective-c++']

if CONFIG['OS_ARCH'] == 'Linux':
    DEFINES['POSIX'] = True
    DEFINES['LINUX'] = True
    if CONFIG['HAVE_64BIT_BUILD']:
        DEFINES['LINUX64'] = True
    else:
        DEFINES['LINUX32'] = True

LOCAL_INCLUDES += [
    '/toolkit/components/jsoncpp/include',
]

USE_LIBS += [
    'jsoncpp',
]

EXPORTS += [
    'headers/openvr.h',
]

SOURCES += [
    'src/dirtools_public.cpp',
    'src/envvartools_public.cpp',
    'src/hmderrors_public.cpp',
    'src/openvr_api_public.cpp',
    'src/pathtools_public.cpp',
    'src/sharedlibtools_public.cpp',
    'src/strtools_public.cpp',
    'src/vrpathregistry_public.cpp',
]

if CONFIG['CC_TYPE'] in ('clang', 'gcc'):
    # Harmless warnings in 3rd party code
    CXXFLAGS += [
        '-Wno-error=parentheses',
        '-Wno-error=unused-variable',
    ]