This repository has been archived by the owner on Aug 5, 2022. It is now read-only.
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from 01org/remove_include_library_trick
Android: Link to shared library xmlSerializer The Parameter Framework has recently removed (this trick was not working on osx) its *_include libraries. They were used to include headers without linking against the libraries in the android build system. There is two way to include headers from a library: - copy the headers (but that would be in contradiction with how the main pfw headers are included) - link against the library (chosen solution) To avoid linking against a static libxmlserializer - ie add it and its dependency to all plugins - the xmlserializer library is now dynamic. Link against the dynamic library xmlserializer and no longer use *_include.
- Loading branch information