Skip to content

Commit

Permalink
Fix install path in meson build, release v0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
andy5995 committed Feb 20, 2024
1 parent 3b5542b commit b1ff99c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions ChangeLog.md
@@ -1,3 +1,9 @@
2024-02-20

* Fix install path in meson.build

* release v0.1.2

2024-02-19

* Expand documentation and add link to demo video
Expand Down
4 changes: 2 additions & 2 deletions meson.build
@@ -1,7 +1,7 @@
project(
'pinner',
['c'],
version: '0.1.1',
version: '0.1.2',
meson_version : '>= 0.50.0',
default_options: [
'warning_level=2',
Expand Down Expand Up @@ -37,5 +37,5 @@ shared_module(
dependencies: [geany_dep],
install: true,
name_prefix: '',
install_dir : join_paths(get_option('prefix'), 'lib', 'geany')
install_dir : join_paths(get_option('prefix'), get_option('libdir'), 'geany')
)

0 comments on commit b1ff99c

Please sign in to comment.