forked from Kistler-Group/sdbus-cpp
* Add preliminary changes for async server methods * Refactor the Message concept and break it into distinctive types * Continue working on async server methods (high-level API mainly) * Continue developing support for async server * Finishing async server methods * Finishing async server methods (fixing tests & cleaning up) * A little code cleaning * Add unit tests for type traits of free functions * Support for generating async server methods in stub headers * Update ChangeLog for v0.3.0 * Update the tutorial with how to use async server-side methods * Update the TOC in sdbus-c++ tutorial * Update numbering in TOC * Remove unnecessary code * Final cleanups
25 lines
647 B
Makefile
25 lines
647 B
Makefile
|
|
# Distribution
|
|
# Headers will be installed to $(includedir)/sdbus-c++ directory
|
|
|
|
HEADER_DIR = sdbus-c++
|
|
libsdbuscppdir = $(includedir)/$(HEADER_DIR)
|
|
libsdbuscpp_HEADERS = \
|
|
$(HEADER_DIR)/ConvenienceClasses.h \
|
|
$(HEADER_DIR)/ConvenienceClasses.inl \
|
|
$(HEADER_DIR)/Error.h \
|
|
$(HEADER_DIR)/IConnection.h \
|
|
$(HEADER_DIR)/Interfaces.h \
|
|
$(HEADER_DIR)/Introspection.h \
|
|
$(HEADER_DIR)/IObject.h \
|
|
$(HEADER_DIR)/IObjectProxy.h \
|
|
$(HEADER_DIR)/Message.h \
|
|
$(HEADER_DIR)/MethodResult.h \
|
|
$(HEADER_DIR)/Types.h \
|
|
$(HEADER_DIR)/TypeTraits.h \
|
|
$(HEADER_DIR)/sdbus-c++.h
|
|
|
|
EXTRA_DIST = ($libsdbuscpp_HEADERS)
|
|
|
|
DISTCLEANFILES = Makefile Makefile.in
|