summaryrefslogtreecommitdiff
path: root/web/configure.ac
diff options
context:
space:
mode:
authorꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2022-09-14 19:00:54 +0800
committerꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2022-09-14 19:00:54 +0800
commit092ab36bc4c2ecdce80082e51386d01cc2d47305 (patch)
treea1fbf5999acab4a137bb25b4569a5befb3f256c9 /web/configure.ac
Minimum to get an app running
The config and HTML files are in this project, so the paths shouldn't be decided in libshopify.
Diffstat (limited to 'web/configure.ac')
-rw-r--r--web/configure.ac8
1 files changed, 8 insertions, 0 deletions
diff --git a/web/configure.ac b/web/configure.ac
new file mode 100644
index 0000000..7ef439c
--- /dev/null
+++ b/web/configure.ac
@@ -0,0 +1,8 @@
+AC_INIT([shopify-app-template-c], [0.0], [erik@darapsa.co.id])
+AM_INIT_AUTOMAKE([-Wall -Werror foreign])
+AC_PROG_CC
+PKG_CHECK_MODULES([DEPS], [libmicrohttpd libgcrypt gnutls libpcre2-8 libcurl json-c])
+AC_FUNC_MALLOC
+AC_TYPE_SIZE_T
+AC_CONFIG_FILES([Makefile])
+AC_OUTPUT