We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b5542b commit b1ff99cCopy full SHA for b1ff99c
ChangeLog.md
@@ -1,3 +1,9 @@
1
+2024-02-20
2
+
3
+* Fix install path in meson.build
4
5
+* release v0.1.2
6
7
2024-02-19
8
9
* Expand documentation and add link to demo video
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',
@@ -37,5 +37,5 @@ shared_module(
37
dependencies: [geany_dep],
38
install: true,
39
name_prefix: '',
40
- install_dir : join_paths(get_option('prefix'), 'lib', 'geany')
+ install_dir : join_paths(get_option('prefix'), get_option('libdir'), 'geany')
41
)
0 commit comments