diff options
author | David Wagner <david.wagner@intel.com> | 2014-02-17 15:14:15 +0100 |
---|---|---|
committer | David Wagner <david.wagner@intel.com> | 2014-02-17 16:44:14 +0100 |
commit | 3fac6d8f4e0d65a02a478dd32947c74b82b1b7b5 (patch) | |
tree | b0fb0f3fbdc1b1e262c3eb9e415bb8bb30d9432b /xmlserializer | |
parent | 4ff62d67aaf128546af2b4a4ec728a1c731998d0 (diff) | |
download | external_parameter-framework-3fac6d8f4e0d65a02a478dd32947c74b82b1b7b5.zip external_parameter-framework-3fac6d8f4e0d65a02a478dd32947c74b82b1b7b5.tar.gz external_parameter-framework-3fac6d8f4e0d65a02a478dd32947c74b82b1b7b5.tar.bz2 |
Add CMake Makefiles
1) Generate the Makefiles with "cmake";
2) compile all targets with "make".
Signed-off-by: David Wagner <david.wagner@intel.com>
Diffstat (limited to 'xmlserializer')
-rw-r--r-- | xmlserializer/CMakeLists.txt | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/xmlserializer/CMakeLists.txt b/xmlserializer/CMakeLists.txt new file mode 100644 index 0000000..052ca2e --- /dev/null +++ b/xmlserializer/CMakeLists.txt @@ -0,0 +1,16 @@ +add_library(xmlserializer SHARED + XmlElement.cpp + XmlSerializingContext.cpp + XmlDocSource.cpp + XmlDocSink.cpp + XmlMemoryDocSink.cpp + XmlMemoryDocSource.cpp + XmlStringDocSink.cpp + XmlFileDocSink.cpp + XmlFileDocSource.cpp + XmlStringDocSource.cpp) + +include(FindLibXml2) +# TODO: check for the "XInclude" feature in libxml2 +include_directories(${LIBXML2_INCLUDE_DIR}) +target_link_libraries(xmlserializer ${LIBXML2_LIBRARIES}) |