@elextr commented on this pull request.


In meson.build:

> +    'src/utils.h',
+    'src/vte.c',
+    'src/vte.h',
+    gen_src,
+    soversion: '0',
+    c_args: geany_cflags,
+    include_directories: [iscintilla],
+    dependencies: [dep_tagmanager, dep_ctags, dep_scintilla] + deps,
+    install: true)
+
+executable('geany', 'src/main.c',
+            link_with: libgeany,
+            c_args: geany_cflags,
+            dependencies: [dep_ctags] + deps,
+            build_rpath: meson.build_root(),
+            install_rpath: join_paths(prefix, 'lib'),

@kugel- here is why rpath is set to $PREFIX/lib but I can't find how in meson docs to find where libraries are installed but clearly its different for different systems but this needs to be set to it (or the install set).


You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or unsubscribe.