summaryrefslogtreecommitdiff
path: root/tools/maint/libpath.inc
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2025-01-15 07:31:09 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2025-01-15 07:31:09 (GMT)
commit8be5b3fb8a516380fc88fd900a98238ce8564682 (patch)
tree046285342f2a3025269e3f4599d448fefbae5726 /tools/maint/libpath.inc
parenteffdeaccbd2a5f65d41d3b906de420c2fc532e10 (diff)
Introduce a few new helper files for local execution.
Diffstat (limited to 'tools/maint/libpath.inc')
-rw-r--r--tools/maint/libpath.inc10
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/maint/libpath.inc b/tools/maint/libpath.inc
new file mode 100644
index 0000000..19e68d7
--- /dev/null
+++ b/tools/maint/libpath.inc
@@ -0,0 +1,10 @@
+
+# Look for all path containing binaries for local execution
+
+# source tools/maint/libpath.inc
+
+LD_LIBRARY_PATH="$PWD/src/.libs:$LD_LIBRARY_PATH"
+
+find . -type d -name schemas -exec glib-compile-schemas {} \;
+
+export LD_LIBRARY_PATH=$( find plugins/ -maxdepth 2 -type d -name '.libs' -printf "$PWD/plugins/%P:" | sed 's/:$//' ):"$LD_LIBRARY_PATH"