forked from audacious-media-player/audacious
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meson.build
154 lines (114 loc) · 4.32 KB
/
meson.build
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
project('audacious', 'c', 'cpp',
version: '4.0-devel',
meson_version: '>= 0.50')
copyright = 'Copyright (C) 2001-2020 Audacious developers and others'
qt5 = import('qt5')
gnome = import('gnome')
glib_req = '>= 2.32'
glib_dep = dependency('glib-2.0', version: glib_req, required: true)
gmodule_dep = dependency('gmodule-2.0', version: glib_req, required: true)
if get_option('qt')
qt_req = '>= 5.2'
qt_dep = dependency('qt5', version: qt_req, required: true, modules: ['Core', 'Widgets', 'Gui'])
endif
cc = meson.get_compiler('c')
cxx = meson.get_compiler('cpp')
if cc.get_id() == 'gcc' or cc.get_id() == 'clang'
common_flags = [
'-pipe',
'-ffast-math',
'-Wall',
'-Wtype-limits',
'-Wno-stringop-truncation'
]
cxx_flags = [
'-Wno-non-virtual-dtor',
'-Woverloaded-virtual'
]
check_cflags = ['-std=gnu99'] + common_flags
check_cxxflags = ['-std=gnu++11'] + common_flags + cxx_flags
foreach arg : check_cflags
if cc.has_argument(arg)
add_project_arguments(arg, language: 'c')
endif
endforeach
foreach arg : check_cxxflags
if cxx.has_argument(arg)
add_project_arguments(arg, language: 'cpp')
endif
endforeach
endif
conf = configuration_data()
conf.set_quoted('BUILDSTAMP', '???')
conf.set_quoted('COPYRIGHT', copyright)
conf.set_quoted('PACKAGE', meson.project_name())
conf.set_quoted('VERSION', meson.project_version())
conf.set('PACKAGE_VERSION', meson.project_version())
if host_machine.endian() == 'big'
conf.set10('WORDS_BIGENDIAN', true)
conf.set10('BIGENDIAN', true)
else
conf.set10('BIGENDIAN', false)
endif
# XXX - investigate to see if we can do better
conf.set_quoted('PLUGIN_SUFFIX', '.so')
if host_machine.system() == 'windows'
conf.set_quoted('PLUGIN_SUFFIX', '.dll')
elif host_machine.system() == 'darwin'
conf.set_quoted('PLUGIN_SUFFIX', '.dylib')
endif
if host_machine.system() == 'windows'
conf.set('EXPORT', '__declspec(dllexport)')
conf.set_quoted('PLUGIN_SUFFIX', '.dll')
elif cc.get_id() == 'gcc' or cc.get_id() == 'clang'
add_project_arguments('-fvisibility=hidden', language: 'c')
add_project_arguments('-fvisibility=hidden', language: 'cpp')
conf.set('EXPORT', '__attribute__((visibility("default")))')
endif
install_bindir = get_option('bindir')
install_datadir = join_paths(get_option('datadir'), 'audacious')
install_plugindir = join_paths(get_option('libdir'), 'audacious')
install_localedir = get_option('localedir')
install_desktoppath = join_paths(get_option('datadir'), 'applications')
install_desktopfile = join_paths(install_desktoppath, 'audacious.desktop')
install_iconpath = join_paths(get_option('datadir'), 'icons')
install_unscalable_iconpath = join_paths(install_iconpath, 'hicolor', '48x48', 'apps')
install_scalable_iconpath = join_paths(install_iconpath, 'hicolor', 'scalable', 'apps')
install_iconfile = join_paths(install_unscalable_iconpath, 'audacious.png')
conf.set_quoted('INSTALL_BINDIR', join_paths(get_option('prefix'), install_bindir))
conf.set_quoted('INSTALL_DATADIR', join_paths(get_option('prefix'), install_datadir))
conf.set_quoted('INSTALL_PLUGINDIR', join_paths(get_option('prefix'), install_plugindir))
conf.set_quoted('INSTALL_LOCALEDIR', join_paths(get_option('prefix'), install_localedir))
conf.set_quoted('INSTALL_DESKTOPFILE', join_paths(get_option('prefix'), install_desktopfile))
conf.set_quoted('INSTALL_ICONFILE', join_paths(get_option('prefix'), install_iconfile))
conf.set('plugindir', install_plugindir)
conf.set('datarootdir', get_option('datadir'))
if get_option('dbus')
conf.set10('USE_DBUS', true)
endif
if get_option('qt')
conf.set10('USE_QT', true)
endif
subdir('src')
subdir('po')
subdir('man')
subdir('images')
install_data('AUTHORS', 'COPYING')
install_data('audacious.desktop', install_dir: install_desktoppath)
pkg = import('pkgconfig')
# When Meson fixes the utter disappointment that is
# https://github.com/mesonbuild/meson/issues/5836,
# use libaudcore_lib as base dependency here.
pkg.generate(
libraries: ['-L${libdir} -laudcore'],
variables: [
'plugin_dir=${libdir}/audacious',
# Appease broken third-party plugin build systems.
'audacious_include_dir=${includedir}',
'include_dir=${includedir}',
'lib_dir=${libdir}'
],
description: 'versatile and handy multi platform media player',
name: 'audacious',
url: 'https://audacious-media-player.org'
)