aboutsummaryrefslogtreecommitdiff
path: root/extra/user-scripts/artifacts/compile_flags
diff options
context:
space:
mode:
authorNunoSempere <nuno.sempere@protonmail.com>2023-03-28 11:18:54 -0600
committerNunoSempere <nuno.sempere@protonmail.com>2023-03-28 11:18:54 -0600
commitca59138a2aef96960381f986b8c683634e4d8e63 (patch)
tree16c62f8a2b3bfe7ad55053294095f70a85d19613 /extra/user-scripts/artifacts/compile_flags
parentcc959fda4fac18f1c429158d1ffea24692276310 (diff)
tweak: move things around
Diffstat (limited to 'extra/user-scripts/artifacts/compile_flags')
-rw-r--r--extra/user-scripts/artifacts/compile_flags/compile_flags.txt27
-rw-r--r--extra/user-scripts/artifacts/compile_flags/get-compile-flags.sh5
2 files changed, 32 insertions, 0 deletions
diff --git a/extra/user-scripts/artifacts/compile_flags/compile_flags.txt b/extra/user-scripts/artifacts/compile_flags/compile_flags.txt
new file mode 100644
index 0000000..7fd8daf
--- /dev/null
+++ b/extra/user-scripts/artifacts/compile_flags/compile_flags.txt
@@ -0,0 +1,27 @@
+-I/usr/include/webkitgtk-4.0
+-I/usr/include/glib-2.0
+-I/usr/lib/glib-2.0/include
+-I/usr/include/sysprof-4
+-I/usr/include/gtk-3.0
+-I/usr/include/pango-1.0
+-I/usr/include/harfbuzz
+-I/usr/include/freetype2
+-I/usr/include/libpng16
+-I/usr/include/libmount
+-I/usr/include/blkid
+-I/usr/include/fribidi
+-I/usr/include/cairo
+-I/usr/include/lzo
+-I/usr/include/pixman-1
+-I/usr/include/gdk-pixbuf-2.0
+-I/usr/include/gio-unix-2.0
+-I/usr/include/cloudproviders
+-I/usr/include/atk-1.0
+-I/usr/include/at-spi2-atk/2.0
+-I/usr/include/at-spi-2.0
+-I/usr/include/dbus-1.0
+-I/usr/lib/dbus-1.0/include
+-I/usr/include/libsoup-2.4
+-I/usr/include/libxml2
+-pthread
+
diff --git a/extra/user-scripts/artifacts/compile_flags/get-compile-flags.sh b/extra/user-scripts/artifacts/compile_flags/get-compile-flags.sh
new file mode 100644
index 0000000..aaa9e01
--- /dev/null
+++ b/extra/user-scripts/artifacts/compile_flags/get-compile-flags.sh
@@ -0,0 +1,5 @@
+DEPS='webkit2gtk-4.0'
+INCS=`pkg-config --cflags ${DEPS}`
+LIBS=`pkg-config --libs ${DEPS}`
+echo $INCS
+echo $LIBS