aboutsummaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authorfenze <contact@fenze.dev>2022-11-14 21:41:43 +0100
committerfenze <contact@fenze.dev>2022-11-14 21:41:43 +0100
commita45d1c70f58586fed97df70650e5d066b73d0a0d (patch)
tree565319b3d953e6a88eb6f02b79da77ca4f59c13c /build.sh
Initial commit
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/build.sh b/build.sh
new file mode 100755
index 0000000..00118e4
--- /dev/null
+++ b/build.sh
@@ -0,0 +1,8 @@
+CC=clang
+SRC=rose.c
+DEPS=('webkit2gtk-4.0' 'libadwaita-1')
+
+INCS=`pkg-config --cflags ${DEPS[@]}`
+LIBS=`pkg-config --libs ${DEPS[@]}`
+
+$CC $INCS $LIBS $SRC -o rose