mirror of
https://github.com/Rafostar/clapper.git
synced 2025-08-30 16:02:00 +02:00
Include "GstPlayer" lib renamed to "GstClapper" as part of the app
This commit is contained in:
26
meson.build
26
meson.build
@@ -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
|
||||
|
Reference in New Issue
Block a user