aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorDavid Barksdale <amatus@amat.us>2019-01-01 17:57:24 -0600
committerDavid Barksdale <amatus@amat.us>2019-01-01 17:57:24 -0600
commite05d90be8cf4b5e2144253ee839832565045abe6 (patch)
tree30fc211115776a7d6fa86a6ed000a2a1e0053a28 /configure.ac
Initial commit before things get crazyHEADmaster
This seems to be interpreting everything in some pdf files I have generated from McCAD (via printing to postscript) except for text. The scale also needs to be considered.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac32
1 files changed, 32 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
new file mode 100644
index 0000000..328701a
--- /dev/null
+++ b/configure.ac
@@ -0,0 +1,32 @@
+dnl Process this file with autoconf to produce a configure script.
+dnl Created by Anjuta application wizard.
+
+AC_INIT(pdf2gerber, 0.1)
+
+AC_CONFIG_HEADERS([config.h])
+
+AM_INIT_AUTOMAKE([1.11])
+
+AM_SILENT_RULES([yes])
+
+AC_PROG_CXX
+
+
+
+
+
+
+
+
+
+
+
+
+
+PKG_CHECK_MODULES(POPPLER,poppler)
+
+AC_OUTPUT([
+Makefile
+src/Makefile
+
+])