Merge pull request #177 from kiwix/rpath

Set rpath of the installed binaries.
This commit is contained in:
Matthieu Gautier 2018-04-17 17:14:53 +02:00 committed by GitHub
commit eccf5e194c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 10 additions and 5 deletions

View File

@ -1,3 +1,4 @@
executable('kiwix-install', ['kiwix-install.cpp'],
dependencies:all_deps,
install:true)
install:true,
install_rpath: join_paths(get_option('prefix'), get_option('libdir')))

View File

@ -1,3 +1,4 @@
executable('kiwix-manage', ['kiwix-manage.cpp'],
dependencies:all_deps,
install:true)
install:true,
install_rpath: join_paths(get_option('prefix'), get_option('libdir')))

View File

@ -1,3 +1,4 @@
executable('kiwix-read', ['kiwix-read.cpp'],
dependencies:all_deps,
install:true)
install:true,
install_rpath: join_paths(get_option('prefix'), get_option('libdir')))

View File

@ -1,3 +1,4 @@
executable('kiwix-search', ['kiwix-search.cpp'],
dependencies:all_deps,
install:true)
install:true,
install_rpath: join_paths(get_option('prefix'), get_option('libdir')))

View File

@ -4,4 +4,5 @@ sources += server_resources
executable('kiwix-serve', sources,
dependencies:all_deps,
install:true)
install:true,
install_rpath: join_paths(get_option('prefix'), get_option('libdir')))