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 893f9dc
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 4 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/gom.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "gom",
"buildsystem": "meson",
"config-opts": ["--libdir=/app/lib", "-Denable-gtk-doc=false"],
"sources": [
{
"type": "archive",
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
2 changes: 1 addition & 1 deletion build-aux/modules/libspelling.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "libspelling",
"buildsystem": "meson",
"config-opts": ["-Ddocs=false"],
"config-opts": ["--libdir=/app/lib", "-Ddocs=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 893f9dc

Please sign in to comment.