talkatu/talkatu

ebabd7682683
Update TalkatuMessage:id to be a string.

Many modern protocols are using uuids as id's and forcing that into a uint64 is
going to lead to collisions. So instead just use a string which should work for
everything.

Testing Done:
Ran the demo and unit tests.

Reviewed at https://reviews.imfreedom.org/r/879/
###############################################################################
# Variables
###############################################################################
sources = [
'talkatudemo.c',
'talkatudemowindow.c',
'talkatudemowindow.h',
]
###############################################################################
# Resources
###############################################################################
talkatudemo_resources = gnome.compile_resources(
'talkatudemoresources',
'data/talkatudemo.gresource.xml',
c_name: 'talkatudemo',
source_dir: 'data'
)
###############################################################################
# Demo program
###############################################################################
talkatudemo = executable('talkatu-demo',
sources,
talkatudemo_resources,
dependencies: [GLIB, GTK3, talkatu_dep],
include_directories : top_srcdir,
install: get_option('install-demo'),
)
if get_option('help2man')
custom_target('talkatu-demo.1',
command : [HELP2MAN,
'--name=Talkatu Demo', '--section=1',
'--help-option=--help-all', '--no-info',
'--output', '@OUTPUT@',
talkatudemo],
output : 'talkatu-demo.1',
install : get_option('install-demo'),
install_dir : get_option('mandir') / 'man1')
endif