Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ ltmain.sh
stamp-h1
config.sub
*subs.sh
qmi-framework.pc

# Ignore specific binaries
tests/qcci_test
Expand All @@ -35,4 +36,3 @@ tests/qcsi_test
# Ignore directories
autom4te.cache/
m4/

4 changes: 4 additions & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,8 @@ pkginclude_HEADERS = \
include/qmi_cci.h \
include/qmi_idl_lib.h \
include/qmi_idl_lib_internal.h

pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = qmi-framework.pc

SUBDIRS = common qencdec qcci qcsi tests
3 changes: 2 additions & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ AC_CONFIG_FILES([
qencdec/Makefile \
qcci/Makefile \
qcsi/Makefile \
tests/Makefile
tests/Makefile \
qmi-framework.pc
])
AC_OUTPUT
11 changes: 11 additions & 0 deletions qmi-framework.pc.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
prefix=@prefix@
exec_prefix=@exec_prefix@
libdir=@libdir@
includedir=@includedir@

Name: qmi-framework
Description: QMI Framework - Qualcomm Messaging Interface
Version: @VERSION@
Requires:
Libs: -L${libdir} -lqcci -lqcsi -lqencdec -lqmi_common
Cflags: -I${includedir}
Loading