Skip to content

Commit

Permalink
meson: default install in user home directory
Browse files Browse the repository at this point in the history
  • Loading branch information
fzwoch committed Dec 30, 2022
1 parent aaaf022 commit 4ca7440
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,12 @@
# along with obs-gstreamer. If not, see <http://www.gnu.org/licenses/>.
#

project('obs-gstreamer', 'c')
project('obs-gstreamer', 'c',
default_options : [
'prefix=~/.config/obs-studio/plugins/obs-gstreamer/bin/64bit',
'libdir='
],
)

obs_dep = dependency('libobs', required : false)
if not obs_dep.found()
Expand Down Expand Up @@ -51,5 +56,4 @@ shared_library('obs-gstreamer',
dependency('gstreamer-app-1.0'),
],
install : true,
install_dir : join_paths(get_option('libdir'), 'obs-plugins'),
)

0 comments on commit 4ca7440

Please sign in to comment.