diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2021-06-09 20:12:59 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2021-06-09 20:12:59 +0800 |
commit | e165344ab55e98e27e13f7024b6143aa84518489 (patch) | |
tree | b5ebdc6a7b2c2ba85bcf3c37771b79f3531a1e02 /Makefile.am | |
parent | a1e538564d4b2a60be70a32ec39afdba249ce37d (diff) |
Add support for Autotools
though the resulting library is not right yet.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..67425a7 --- /dev/null +++ b/Makefile.am @@ -0,0 +1,15 @@ +lib_LTLIBRARIES = libqicclient.la +libqicclient_la_SOURCES = \ + catalog.cxx \ + ord.cxx \ + member.cxx \ + admin.cxx \ + client.cxx +libqicclient_la_CPPFLAGS = $(QT_CFLAGS) +libqicclient_la_LDFLAGS = $(QT_LIBS) +pkginclude_HEADERS = \ + qicclient/catalog.hxx \ + qicclient/ord.hxx \ + qicclient/member.hxx \ + qicclient/admin.hxx \ + qicclient/client.hxx |