matfantinel / reminduck

A simple reminder app made for elementaryOS with Vala and GTK.
GNU General Public License v3.0
58 stars 12 forks source link

Duplicated code in meson.build #45

Closed NathanBnm closed 3 years ago

NathanBnm commented 4 years ago
project('com.github.matfantinel.reminduck', 'vala', 'c', version: '1.5.6')

-add_project_arguments([
-        '-DGETTEXT_PACKAGE="@0@"'.format(meson.project_name())
-    ],
-    language: 'c',
-)

gnome = import('gnome')
i18n = import('i18n')

add_project_arguments(
    '-DGETTEXT_PACKAGE="@0@"'.format(meson.project_name()),
    language: 'c'
)