summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorges Basile Stavracas Neto <georges.stavracas@gmail.com>2018-05-03 00:45:29 -0300
committerGeorges Basile Stavracas Neto <georges.stavracas@gmail.com>2018-05-03 00:45:29 -0300
commitaf0186aaf99cb6add6b5a3c85828e8a4d6e49fd5 (patch)
tree598d9e4eb973fc5fc04e765adb2da7d748c83803
parent36af5e51d13b035eb3eb6b7d196d8924996ce344 (diff)
downloadgnome-control-center-af0186aaf99cb6add6b5a3c85828e8a4d6e49fd5.tar.gz
project: Update meson files
I probably have OCD. Seeing these files with this poor alignment gives me physical pain.
-rw-r--r--data/icons/meson.build4
-rw-r--r--man/meson.build12
-rw-r--r--meson.build2
-rw-r--r--panels/wacom/meson.build54
-rw-r--r--search-provider/meson.build30
-rw-r--r--shell/meson.build90
-rw-r--r--tests/common/meson.build10
-rw-r--r--tests/datetime/meson.build14
-rw-r--r--tests/info/meson.build12
-rw-r--r--tests/network/meson.build19
-rw-r--r--tests/printers/meson.build12
11 files changed, 129 insertions, 130 deletions
diff --git a/data/icons/meson.build b/data/icons/meson.build
index 0f9a7eb54..a6a6c221f 100644
--- a/data/icons/meson.build
+++ b/data/icons/meson.build
@@ -1,4 +1,4 @@
install_subdir(
- 'hicolor',
- install_dir: control_center_icondir
+ 'hicolor',
+ install_dir : control_center_icondir
)
diff --git a/man/meson.build b/man/meson.build
index cab3fa945..1e9e08971 100644
--- a/man/meson.build
+++ b/man/meson.build
@@ -17,10 +17,10 @@ xsltproc_cmd = [
output = meson.project_name() + '.1'
custom_target(
- output,
- input: meson.project_name() + '.xml',
- output: output,
- command: xsltproc_cmd,
- install: true,
- install_dir: join_paths(control_center_mandir, 'man1')
+ output,
+ input : meson.project_name() + '.xml',
+ output : output,
+ command : xsltproc_cmd,
+ install : true,
+ install_dir : join_paths(control_center_mandir, 'man1')
)
diff --git a/meson.build b/meson.build
index 16911d990..2e7a36d3c 100644
--- a/meson.build
+++ b/meson.build
@@ -65,7 +65,6 @@ optimized_src = '''
'''
control_center_optimized = get_option('buildtype').contains('optimized') and cc.compiles(optimized_src)
-message('whether_optimization is enabled: ' + control_center_optimized.to_string())
if control_center_optimized
common_flags += '-Wp,-D_FORTIFY_SOURCE=2'
@@ -282,6 +281,7 @@ output += ' Options \n'
output += ' Documentation .............................. ' + get_option('documentation').to_string() + '\n'
output += ' Tracing .................................... ' + enable_tracing.to_string() + '\n'
output += ' gnome-session libexecdir ................... ' + gnome_session_libexecdir + '\n'
+output += ' Optimized .................................. ' + control_center_optimized.to_string() + '\n'
output += ' Panels \n'
output += ' GNOME Bluetooth (Bluetooth panel) .......... ' + host_is_linux_not_s390.to_string() + '\n'
output += ' Cheese (Users panel webcam support) ........ ' + enable_cheese.to_string() + '\n'
diff --git a/panels/wacom/meson.build b/panels/wacom/meson.build
index d323a818a..e206b00e9 100644
--- a/panels/wacom/meson.build
+++ b/panels/wacom/meson.build
@@ -15,19 +15,19 @@ panels_list += cappletname
desktop = 'gnome-@0@-panel.desktop'.format(cappletname)
desktop_in = configure_file(
- input: desktop + '.in.in',
- output: desktop + '.in',
- configuration: desktop_conf
+ input : desktop + '.in.in',
+ output : desktop + '.in',
+ configuration : desktop_conf
)
i18n.merge_file(
- desktop,
- type: 'desktop',
- input: desktop_in,
- output: desktop,
- po_dir: po_dir,
- install: true,
- install_dir: control_center_desktopdir
+ desktop,
+ type : 'desktop',
+ input : desktop_in,
+ output : desktop,
+ po_dir : po_dir,
+ install : true,
+ install_dir : control_center_desktopdir
)
common_sources = files(
@@ -62,10 +62,10 @@ resource_data = files(
common_sources += gnome.compile_resources(
'cc-' + cappletname + '-resources',
cappletname + '.gresource.xml',
- source_dir: '.',
- c_name: 'cc_' + cappletname,
- dependencies: resource_data,
- export: true
+ source_dir : '.',
+ c_name : 'cc_' + cappletname,
+ dependencies : resource_data,
+ export : true
)
sources = common_sources + files(
@@ -82,13 +82,11 @@ incs = [
panels_libs += static_library(
cappletname + '-properties',
- sources: sources,
- include_directories: incs,
- dependencies: deps,
- c_args: cflags,
- link_with: [
- libwacom_calibrator
- ]
+ sources : sources,
+ include_directories : incs,
+ dependencies : deps,
+ c_args : cflags,
+ link_with : [ libwacom_calibrator ]
)
name = 'test-wacom'
@@ -96,12 +94,10 @@ name = 'test-wacom'
sources = common_sources + files(name + '.c')
executable(
- name,
- sources,
- include_directories: incs,
- dependencies: deps,
- c_args: test_cflags,
- link_with: [
- libwacom_calibrator_test
- ]
+ name,
+ sources,
+ include_directories : incs,
+ dependencies : deps,
+ c_args : test_cflags,
+ link_with : [ libwacom_calibrator_test ]
)
diff --git a/search-provider/meson.build b/search-provider/meson.build
index ef24b2f01..294464c5d 100644
--- a/search-provider/meson.build
+++ b/search-provider/meson.build
@@ -4,11 +4,11 @@ service_conf.set('libexecdir', control_center_libexecdir)
service = 'org.gnome.ControlCenter.SearchProvider.service'
configure_file(
- input: service + '.in',
- output: service,
- install: true,
- install_dir: join_paths(control_center_datadir, 'dbus-1', 'services'),
- configuration: service_conf
+ input : service + '.in',
+ output : service,
+ install : true,
+ install_dir : join_paths(control_center_datadir, 'dbus-1', 'services'),
+ configuration : service_conf
)
install_data(
@@ -26,8 +26,8 @@ sources = files(
sources += gnome.gdbus_codegen(
'cc-shell-search-provider-generated',
'org.gnome.ShellSearchProvider2.xml',
- interface_prefix: 'org.gnome.',
- namespace: 'Cc'
+ interface_prefix : 'org.gnome.',
+ namespace : 'Cc'
)
cflags = '-DGNOMELOCALEDIR="@0@"'.format(control_center_localedir)
@@ -38,12 +38,12 @@ libs = [
]
executable(
- meson.project_name() + '-search-provider',
- sources,
- include_directories: top_inc,
- dependencies: shell_deps,
- c_args: cflags,
- link_with: libs,
- install: true,
- install_dir: control_center_libexecdir
+ 'gnome-control-center-search-provider',
+ sources,
+ include_directories : top_inc,
+ dependencies : shell_deps,
+ c_args : cflags,
+ link_with : libs,
+ install : true,
+ install_dir : control_center_libexecdir
)
diff --git a/shell/meson.build b/shell/meson.build
index 241b140ca..73b18f84e 100644
--- a/shell/meson.build
+++ b/shell/meson.build
@@ -7,39 +7,39 @@ service_conf.set('bindir', control_center_bindir)
service = 'org.gnome.ControlCenter.service'
configure_file(
- input: service + '.in',
- output: service,
- install: true,
- install_dir: join_paths(control_center_datadir, 'dbus-1', 'services'),
- configuration: service_conf
+ input : service + '.in',
+ output : service,
+ install : true,
+ install_dir : join_paths(control_center_datadir, 'dbus-1', 'services'),
+ configuration : service_conf
)
desktop = 'gnome-control-center.desktop'
desktop_in = configure_file(
- input: desktop + '.in.in',
- output: desktop + '.in',
- configuration: desktop_conf
+ input : desktop + '.in.in',
+ output : desktop + '.in',
+ configuration : desktop_conf
)
i18n.merge_file(
- desktop,
- type: 'desktop',
- input: desktop_in,
- output: desktop,
- po_dir: po_dir,
- install: true,
- install_dir: control_center_desktopdir
+ desktop,
+ type : 'desktop',
+ input : desktop_in,
+ output : desktop,
+ po_dir : po_dir,
+ install : true,
+ install_dir : control_center_desktopdir
)
cflags = ['-DGNOMELOCALEDIR="@0@"'.format(control_center_localedir)]
libshell = static_library(
- 'shell',
- sources: 'cc-shell-model.c',
- include_directories: [top_inc, common_inc],
- dependencies: common_deps,
- c_args: cflags
+ 'shell',
+ sources : 'cc-shell-model.c',
+ include_directories : [top_inc, common_inc],
+ dependencies : common_deps,
+ c_args : cflags
)
sources = files(
@@ -93,30 +93,30 @@ debug_conf.set('BUGREPORT_URL', 'http://bugzilla.gnome.org/enter_bug.cgi?product
debug_conf.set10('ENABLE_TRACING', enable_tracing)
sources += configure_file(
- input: 'cc-debug.h.in',
- output: 'cc-debug.h',
- configuration: debug_conf
+ input : 'cc-debug.h.in',
+ output : 'cc-debug.h',
+ configuration : debug_conf
)
executable(
meson.project_name(),
- sources,
- include_directories: top_inc,
- dependencies: shell_deps,
- c_args: cflags,
- link_with: panels_libs + [libshell],
- install: true
+ sources,
+ include_directories : top_inc,
+ dependencies : shell_deps,
+ c_args : cflags,
+ link_with : panels_libs + [libshell],
+ install : true
)
# Because it is confusing and somewhat problematic to directly add and compile
# cc-panel-loader.o by another directory (i.e. the shell search provider), we
# have to create a library and link it there, just like libshell.la.
libpanel_loader = static_library(
- 'panel_loader',
- sources: 'cc-panel-loader.c',
- include_directories: top_inc,
- dependencies: common_deps,
- c_args: cflags + ['-DCC_PANEL_LOADER_NO_GTYPES']
+ 'panel_loader',
+ sources : 'cc-panel-loader.c',
+ include_directories : top_inc,
+ dependencies : common_deps,
+ c_args : cflags + ['-DCC_PANEL_LOADER_NO_GTYPES']
)
# libshell_test
@@ -127,19 +127,21 @@ sources = files(
'cc-object-storage.c',
)
libtestshell = static_library(
- 'testshell',
- sources,
- include_directories: top_inc,
- dependencies: common_deps + [ libwidgets_dep ],
- c_args: cflags,
- link_with: panels_libs
+ 'testshell',
+ sources,
+ include_directories : top_inc,
+ dependencies : common_deps + [ libwidgets_dep ],
+ c_args : cflags,
+ link_with : panels_libs
)
libtestshell_dep = declare_dependency(
- include_directories: top_inc,
- link_with: libtestshell
+ include_directories : top_inc,
+ link_with : libtestshell
)
libtestshell_deps = common_deps + [ libwidgets_dep, libtestshell_dep ]
-install_data ('org.gnome.ControlCenter.gschema.xml',
- install_dir: control_center_schemadir)
+install_data (
+ 'org.gnome.ControlCenter.gschema.xml',
+ install_dir : control_center_schemadir
+)
diff --git a/tests/common/meson.build b/tests/common/meson.build
index 7fb2cdc23..4d982f029 100644
--- a/tests/common/meson.build
+++ b/tests/common/meson.build
@@ -12,11 +12,11 @@ cflags = [
]
exe = executable(
- test_unit,
- sources,
- include_directories: [ top_inc, common_inc ],
- dependencies: common_deps + [libwidgets_dep],
- c_args: cflags,
+ test_unit,
+ sources,
+ include_directories : [ top_inc, common_inc ],
+ dependencies : common_deps + [libwidgets_dep],
+ c_args : cflags,
)
test(test_unit, exe)
diff --git a/tests/datetime/meson.build b/tests/datetime/meson.build
index 738651c6d..b1dd514b4 100644
--- a/tests/datetime/meson.build
+++ b/tests/datetime/meson.build
@@ -1,6 +1,6 @@
test_units = [
- #'test-timezone',
+ 'test-timezone',
'test-timezone-gfx',
'test-endianess',
]
@@ -13,12 +13,12 @@ cflags = [
foreach unit: test_units
exe = executable(
- unit,
- [unit + '.c'],
- include_directories: includes,
- dependencies: common_deps + [m_dep],
- link_with: [datetime_panel_lib],
- c_args: cflags
+ unit,
+ [unit + '.c'],
+ include_directories : includes,
+ dependencies : common_deps + [m_dep],
+ link_with : [datetime_panel_lib],
+ c_args : cflags
)
test(unit, exe)
diff --git a/tests/info/meson.build b/tests/info/meson.build
index a495ced94..202e9e34e 100644
--- a/tests/info/meson.build
+++ b/tests/info/meson.build
@@ -8,12 +8,12 @@ cflags = '-DTEST_SRCDIR="@0@"'.format(meson.current_source_dir())
foreach unit: test_units
exe = executable(
- unit,
- [unit + '.c'],
- include_directories: includes,
- dependencies: common_deps,
- link_with: [info_panel_lib],
- c_args: cflags
+ unit,
+ [unit + '.c'],
+ include_directories : includes,
+ dependencies : common_deps,
+ link_with : [info_panel_lib],
+ c_args : cflags
)
test(unit, exe)
diff --git a/tests/network/meson.build b/tests/network/meson.build
index 4378ea72a..5c929232b 100644
--- a/tests/network/meson.build
+++ b/tests/network/meson.build
@@ -11,20 +11,21 @@ cflags = [
exe = executable(
'test-network-panel',
['test-network-panel.c', 'cc-test-window.c', 'nm-utils/nm-test-utils-impl.c'],
- include_directories: includes + [common_inc],
- dependencies: common_deps + network_manager_deps + [libtestshell_dep],
- link_with: [network_panel_lib],
- c_args: cflags
+ include_directories : includes + [common_inc],
+ dependencies : common_deps + network_manager_deps + [libtestshell_dep],
+ link_with : [network_panel_lib],
+ c_args : cflags
)
envs = [
'G_MESSAGES_DEBUG=all',
- 'BUILDDIR=' + meson.current_build_dir(),
- 'TOP_BUILDDIR=' + meson.build_root()
+ 'BUILDDIR=' + meson.current_build_dir(),
+ 'TOP_BUILDDIR=' + meson.build_root()
]
-test('test-network-panel',
+test(
+ 'test-network-panel',
find_program('test-network-panel.py'),
- env: envs,
- timeout: 10
+ env : envs,
+ timeout : 10
)
diff --git a/tests/printers/meson.build b/tests/printers/meson.build
index be7fecbd2..bbf43ab0c 100644
--- a/tests/printers/meson.build
+++ b/tests/printers/meson.build
@@ -9,12 +9,12 @@ cflags = '-DTEST_SRCDIR="@0@"'.format(meson.current_source_dir())
foreach unit: test_units
exe = executable(
- unit,
- [unit + '.c'],
- include_directories: includes,
- dependencies: common_deps,
- link_with: [printers_panel_lib],
- c_args: cflags
+ unit,
+ [unit + '.c'],
+ include_directories : includes,
+ dependencies : common_deps,
+ link_with : [printers_panel_lib],
+ c_args : cflags
)
test(unit, exe)