Skip to content

Commit

Permalink
Specify libdir in several modules
Browse files Browse the repository at this point in the history
For some reason, the dependencies wouldn't be found during build on Github actions/CI.
  • Loading branch information
sonnyp committed Sep 23, 2024
1 parent 168a548 commit 272a403
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 3 deletions.
6 changes: 5 additions & 1 deletion build-aux/modules/GTKCssLanguageServer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,11 @@
"modules": [
{
"name": "jsonrpc-glib",
"config-opts": ["--buildtype=release", "-Denable_tests=false"],
"config-opts": [
"--libdir=/app/lib",
"--buildtype=release",
"-Denable_tests=false"
],
"buildsystem": "meson",
"sources": [
{
Expand Down
1 change: 1 addition & 0 deletions build-aux/modules/libportal.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "libportal",
"buildsystem": "meson",
"config-opts": [
"--libdir=/app/lib",
"-Dtests=false",
"-Dbackend-gtk3=disabled",
"-Dbackend-gtk4=enabled",
Expand Down
2 changes: 1 addition & 1 deletion build-aux/modules/libshumate.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "libshumate",
"buildsystem": "meson",
"config-opts": ["-Dgtk_doc=false"],
"config-opts": ["--libdir=/app/lib", "-Dgtk_doc=false"],
"sources": [
{
"type": "archive",
Expand Down
1 change: 1 addition & 0 deletions build-aux/modules/vte.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "vte",
"buildsystem": "meson",
"config-opts": [
"--libdir=/app/lib",
"-Ddocs=false",
"-Dgtk3=false",
"-Dgtk4=true",
Expand Down
2 changes: 1 addition & 1 deletion demos

0 comments on commit 272a403

Please sign in to comment.