diff options
author | David Wagner <david.wagner@intel.com> | 2014-02-18 10:21:16 +0100 |
---|---|---|
committer | David Wagner <david.wagner@intel.com> | 2014-02-18 10:21:16 +0100 |
commit | 6c91a86d7b07a59f951bbaad5dc799073391a8bb (patch) | |
tree | c949d34e8855160a421c6ff657250e7c2547f6fc /xmlserializer | |
parent | 0050049e450ee3a815710c84d724b1575e496800 (diff) | |
download | external_parameter-framework-6c91a86d7b07a59f951bbaad5dc799073391a8bb.zip external_parameter-framework-6c91a86d7b07a59f951bbaad5dc799073391a8bb.tar.gz external_parameter-framework-6c91a86d7b07a59f951bbaad5dc799073391a8bb.tar.bz2 |
CMake: add rules for installing headers
libparameter abd libxmlserializer headers.
Concerning libparameter headers: only core headers (needed for the plugins) are
currently exported. We'll need to export the client headers too, but we must
make a distiction between the two classes of headers. Also, some currently
exported core headers might not be needed (some cleanup is needed).
Signed-off-by: David Wagner <david.wagner@intel.com>
Diffstat (limited to 'xmlserializer')
-rw-r--r-- | xmlserializer/CMakeLists.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/xmlserializer/CMakeLists.txt b/xmlserializer/CMakeLists.txt index 77b4fb3..409719a 100644 --- a/xmlserializer/CMakeLists.txt +++ b/xmlserializer/CMakeLists.txt @@ -16,3 +16,9 @@ include_directories(${LIBXML2_INCLUDE_DIR}) target_link_libraries(xmlserializer ${LIBXML2_LIBRARIES}) install(TARGETS xmlserializer LIBRARY DESTINATION lib) +install(FILES + XmlSink.h + XmlSource.h + XmlElement.h + XmlSerializingContext.h + DESTINATION "include/xmlserializer") |