1
0
mirror of https://gitlab.gnome.org/World/tootle synced 2025-02-02 08:56:53 +01:00
tootle-linux-client/meson.build

77 lines
2.1 KiB
Meson
Raw Normal View History

2018-04-14 15:09:06 +03:00
project('com.github.bleakgrey.tootle', 'vala', 'c')
gnome = import('gnome')
i18n = import('i18n')
add_global_arguments([
'-DGETTEXT_PACKAGE="@0@"'.format(meson.project_name())
],
language: 'c',
)
asresources = gnome.compile_resources(
'as-resources', 'data/' + meson.project_name() + '.gresource.xml',
source_dir: 'data',
c_name: 'as'
)
executable(
meson.project_name(),
asresources,
'src/Application.vala',
'src/Desktop.vala',
'src/Html.vala',
2018-04-14 15:09:06 +03:00
'src/MainWindow.vala',
2018-04-27 21:50:08 +03:00
'src/SettingsManager.vala',
2018-04-14 15:09:06 +03:00
'src/AccountManager.vala',
'src/ImageCache.vala',
2018-04-14 15:09:06 +03:00
'src/NetManager.vala',
2018-05-11 18:19:48 +03:00
'src/Notificator.vala',
2018-05-27 19:25:16 +03:00
'src/InstanceAccount.vala',
2018-04-14 15:09:06 +03:00
'src/API/Account.vala',
2018-04-30 20:56:02 +03:00
'src/API/Relationship.vala',
2018-04-28 19:27:10 +03:00
'src/API/Mention.vala',
'src/API/Tag.vala',
2018-04-14 15:09:06 +03:00
'src/API/Status.vala',
2018-04-15 14:29:55 +03:00
'src/API/StatusVisibility.vala',
2018-04-17 15:01:55 +03:00
'src/API/Notification.vala',
'src/API/NotificationType.vala',
2018-05-04 23:57:31 +03:00
'src/API/Attachment.vala',
2018-04-14 15:09:06 +03:00
'src/Widgets/AlignedLabel.vala',
2018-04-28 19:27:10 +03:00
'src/Widgets/RichLabel.vala',
2018-05-11 14:28:49 +03:00
'src/Widgets/ImageToggleButton.vala',
2018-04-14 15:09:06 +03:00
'src/Widgets/AccountsButton.vala',
'src/Widgets/StatusWidget.vala',
'src/Widgets/AccountWidget.vala',
2018-04-17 15:01:55 +03:00
'src/Widgets/NotificationWidget.vala',
2018-05-04 23:57:31 +03:00
'src/Widgets/AttachmentWidget.vala',
2018-05-09 17:20:40 +03:00
'src/Widgets/AttachmentBox.vala',
2018-05-27 19:25:16 +03:00
'src/Dialogs/NewAccountDialog.vala',
2018-04-19 22:03:28 +03:00
'src/Dialogs/PostDialog.vala',
2018-05-20 15:43:42 +03:00
'src/Dialogs/SettingsDialog.vala',
2018-04-14 15:09:06 +03:00
'src/Views/AbstractView.vala',
'src/Views/TimelineView.vala',
2018-04-14 15:09:06 +03:00
'src/Views/LocalView.vala',
'src/Views/FederatedView.vala',
2018-04-17 15:01:55 +03:00
'src/Views/NotificationsView.vala',
2018-04-19 22:03:28 +03:00
'src/Views/StatusView.vala',
2018-04-25 16:16:57 +03:00
'src/Views/AccountView.vala',
'src/Views/FollowersView.vala',
'src/Views/FollowingView.vala',
2018-05-02 15:28:46 +03:00
'src/Views/FavoritesView.vala',
2018-05-14 17:43:10 +03:00
'src/Views/SearchView.vala',
2018-04-14 15:09:06 +03:00
dependencies: [
dependency('gtk+-3.0'),
dependency('glib-2.0', version: '>=2.30.0'),
dependency('granite'),
dependency('json-glib-1.0'),
dependency('libsoup-2.4')
],
install: true
)
subdir('data')
subdir('po')
meson.add_install_script('meson/post_install.py')