2018-05-17 13:16:51 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2018 Purism SPC
|
|
|
|
#
|
|
|
|
# This file is part of Calls.
|
|
|
|
#
|
|
|
|
# Calls is free software: you can redistribute it and/or modify it
|
|
|
|
# under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# Calls is distributed in the hope that it will be useful, but
|
|
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
# General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with Calls. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
|
|
|
# Author: Bob Ham <bob.ham@puri.sm>
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#
|
|
|
|
|
|
|
|
gnome = import('gnome')
|
|
|
|
|
2018-11-23 14:34:41 +00:00
|
|
|
src_include = include_directories('.')
|
|
|
|
|
2018-05-23 08:52:58 +00:00
|
|
|
calls_deps = [ dependency('gobject-2.0'),
|
|
|
|
dependency('gtk+-3.0'),
|
|
|
|
dependency('libhandy-0.0'),
|
2018-11-09 16:30:40 +00:00
|
|
|
dependency('gsound'),
|
2018-11-23 14:34:41 +00:00
|
|
|
dependency('libpeas-1.0'),
|
2018-05-23 08:52:58 +00:00
|
|
|
]
|
2018-05-17 13:16:51 +00:00
|
|
|
|
2018-06-13 13:38:51 +00:00
|
|
|
calls_sources = files(['calls-message-source.c', 'calls-message-source.h',
|
|
|
|
'calls-call.c',
|
|
|
|
'calls-origin.c', 'calls-origin.h',
|
|
|
|
'calls-provider.c', 'calls-provider.h',
|
2018-11-01 11:05:45 +00:00
|
|
|
'calls-enumerate-params.c', 'calls-enumerate-params.h',
|
|
|
|
'calls-enumerate.c', 'calls-enumerate.h',
|
2018-06-13 13:38:51 +00:00
|
|
|
'calls-party.c', 'calls-party.h',
|
|
|
|
'calls-call-data.c', 'calls-call-data.h',
|
|
|
|
'calls-call-holder.c', 'calls-call-holder.h',
|
|
|
|
'calls-call-display.c', 'calls-call-display.h',
|
|
|
|
'calls-call-selector-item.c', 'calls-call-selector-item.h',
|
|
|
|
'calls-call-window.c', 'calls-call-window.h',
|
|
|
|
'calls-encryption-indicator.c', 'calls-encryption-indicator.h',
|
|
|
|
'calls-history-box.c', 'calls-history-box.h',
|
|
|
|
'calls-new-call-box.c', 'calls-new-call-box.h',
|
|
|
|
'calls-main-window.c', 'calls-main-window.h',
|
2018-11-09 16:30:40 +00:00
|
|
|
'calls-ringer.c', 'calls-ringer.h',
|
2018-09-15 10:33:36 +00:00
|
|
|
'calls-application.c', 'calls-application.h',
|
2018-06-13 13:38:51 +00:00
|
|
|
'util.c', 'util.h',
|
|
|
|
])
|
2018-05-17 13:16:51 +00:00
|
|
|
|
2018-11-23 14:34:41 +00:00
|
|
|
calls_config_data = config_data
|
|
|
|
calls_config_data.set_quoted('VCS_TAG', '@VCS_TAG@')
|
2018-08-30 08:09:53 +00:00
|
|
|
|
|
|
|
config_h_in = configure_file(
|
|
|
|
output: 'config.h.in',
|
2018-11-23 14:34:41 +00:00
|
|
|
configuration: calls_config_data
|
2018-08-30 08:09:53 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
config_h = vcs_tag(
|
|
|
|
fallback: '',
|
|
|
|
input: config_h_in,
|
|
|
|
output: 'config.h',
|
|
|
|
)
|
|
|
|
|
2018-06-13 13:38:51 +00:00
|
|
|
calls_enum_headers = files(['calls-call.h'])
|
2018-06-11 11:46:08 +00:00
|
|
|
calls_enum_sources = gnome.mkenums_simple('enum-types',
|
|
|
|
sources : calls_enum_headers)
|
2018-05-17 13:16:51 +00:00
|
|
|
|
|
|
|
calls_resources = gnome.compile_resources(
|
|
|
|
'calls-resources',
|
|
|
|
'calls.gresources.xml',
|
2019-06-28 08:20:15 +00:00
|
|
|
source_dir: ['ui', '../data'],
|
2018-05-17 13:16:51 +00:00
|
|
|
c_name: 'call',
|
|
|
|
)
|
|
|
|
|
2018-06-11 11:46:08 +00:00
|
|
|
executable('calls',
|
|
|
|
calls_sources, calls_enum_sources, calls_resources, 'main.c',
|
2018-05-23 08:52:58 +00:00
|
|
|
dependencies : calls_deps,
|
2018-11-23 14:34:41 +00:00
|
|
|
export_dynamic : true,
|
2018-05-29 09:04:17 +00:00
|
|
|
include_directories : include_directories('..'),
|
|
|
|
install : true)
|