mirror of
https://github.com/13hannes11/toolbx-tuner.git
synced 2024-09-03 23:21:00 +02:00
remove all code and start with relm4 0.6
This commit is contained in:
10
meson.build
10
meson.build
@@ -1,15 +1,15 @@
|
||||
project(
|
||||
'toolbxtuner',
|
||||
'toolbox-tuner',
|
||||
'rust',
|
||||
version: '0.0.1',
|
||||
meson_version: '>= 0.59',
|
||||
license: 'GPL-3',
|
||||
# license: 'MIT',
|
||||
)
|
||||
|
||||
i18n = import('i18n')
|
||||
gnome = import('gnome')
|
||||
|
||||
base_id = 'org.kuchelmeister.ToolbxTuner'
|
||||
base_id = 'org.kuchelmeister.ToolboxTuner'
|
||||
|
||||
dependency('glib-2.0', version: '>= 2.66')
|
||||
dependency('gio-2.0', version: '>= 2.66')
|
||||
@@ -35,7 +35,7 @@ gettext_package = meson.project_name()
|
||||
|
||||
if get_option('profile') == 'development'
|
||||
profile = 'Devel'
|
||||
vcs_tag = run_command('git', 'rev-parse', '--short', 'HEAD').stdout().strip()
|
||||
vcs_tag = run_command('git', 'rev-parse', '--short', 'HEAD', check: false).stdout().strip()
|
||||
if vcs_tag == ''
|
||||
version_suffix = '-devel'
|
||||
else
|
||||
@@ -57,7 +57,7 @@ meson.add_dist_script(
|
||||
if get_option('profile') == 'development'
|
||||
# Setup pre-commit hook for ensuring coding style is always consistent
|
||||
message('Setting up git pre-commit hook..')
|
||||
run_command('cp', '-f', 'hooks/pre-commit.hook', '.git/hooks/pre-commit')
|
||||
run_command('cp', '-f', 'hooks/pre-commit.hook', '.git/hooks/pre-commit', check: false)
|
||||
endif
|
||||
|
||||
subdir('data')
|
||||
|
||||
Reference in New Issue
Block a user