Removed phony package to copy .xsd files

BZ: 192861

When hostDomainGenerator.sh is called by the build system, it needs to
copy schema files to /tmp/tmp.XXXXXXX. This is because
parameter-framework needs to have the schema files next to the .xml
files in order to apply validation.

In order to do that, hostDomainGenerator.sh needs to know where he can
copy the .xsd files from.

Currently, the .xsd files are copied from
$HOST_OUT/etc/parameter-framework/Schemas via a dedicated makefile.
This used a phony package to group all the files that have to be copied.

The problem is that phony packages the phony package is not calling the
prebuildt rules we need. So the files we want to export to
/etc/parameter-framework/Schemas are not copied.

This patch removes the phony package in order to produce the expected
behaviour.

Change-Id: I96da56f85a8c3d512fcfb97244181dc6c1cb9401
Signed-off-by: Mattijs Korpershoek <mattijsx.korpershoek@intel.com>
2 files changed
tree: 70c3b032311c38500fc7efcc63ecb800b4d568ea
  1. parameter/
  2. remote-process/
  3. remote-processor/
  4. Schemas/
  5. skeleton-subsystem/
  6. test/
  7. tools/
  8. utility/
  9. xmlserializer/
  10. .gitignore
  11. Android.mk
  12. CMakeLists.txt
  13. COPYING
  14. README.md
README.md

parameter-framework

tl;dr: compilation instructions are at the end

Introduction

WIP

Compiling

Run cmake . then make. You may then install libraries, headers and binaries with make install. By default, they are installed under /usr/local on unix OSes; if you want to install them under a custom directory, you may do so by passing it to the cmake . command; e.g. cmake -DCMAKE_INSTALL_PREFIX=/path/to/custom/install ..