remove all code and start with relm4 0.6

This commit is contained in:
2024-02-26 19:48:54 +01:00
parent 67a80edc9d
commit 3826726b84
44 changed files with 1016 additions and 1381 deletions

View File

@@ -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')