Include "GstPlayer" lib renamed to "GstClapper" as part of the app

This commit is contained in:
Rafał Dzięgiel
2021-01-27 14:44:09 +01:00
parent acfdb7bac4
commit 08f86cf0cc
26 changed files with 8452 additions and 10 deletions

View File

@@ -1,4 +1,4 @@
project('com.github.rafostar.Clapper',
project('com.github.rafostar.Clapper', 'c', 'cpp',
version: '0.0.0',
meson_version: '>= 0.50.0',
license: 'GPL3',
@@ -9,19 +9,25 @@ python = import('python')
python_bin = python.find_installation('python3')
if not python_bin.found()
error('No valid python3 binary found')
error('No valid python3 binary found')
endif
conf = configuration_data()
conf.set('bindir', join_paths(get_option('prefix'), 'bin'))
subdir('bin')
subdir('data')
if get_option('clapper-lib')
subdir('lib')
endif
installdir = join_paths(get_option('prefix'), 'share', meson.project_name())
install_subdir('src', install_dir : installdir)
install_subdir('extras', install_dir : installdir)
install_subdir('css', install_dir : installdir)
install_subdir('ui', install_dir : installdir)
if get_option('clapper-player')
subdir('bin')
subdir('data')
meson.add_install_script('build-aux/meson/postinstall.py')
installdir = join_paths(get_option('prefix'), 'share', meson.project_name())
install_subdir('src', install_dir : installdir)
install_subdir('extras', install_dir : installdir)
install_subdir('css', install_dir : installdir)
install_subdir('ui', install_dir : installdir)
meson.add_install_script('build-aux/meson/postinstall.py')
endif