untrusted_module_template.xml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!-- -->
  3. <!-- Copyright (c) 2018 Intel Corporation. -->
  4. <!-- -->
  5. <!-- All rights reserved. This program and the accompanying materials -->
  6. <!-- are made available under the terms of the Eclipse Public License v1.0 -->
  7. <!-- which accompanies this distribution, and is available at -->
  8. <!-- http://www.eclipse.org/legal/epl-v10.html -->
  9. <!-- -->
  10. <!-- Contributors: -->
  11. <!-- Intel Corporation - initial implementation and documentation -->
  12. <!-- -->
  13. <template type="ProjTempl" version="1.0" supplier="Intel"
  14. revision="1.0" author="Intel" id="SGXUntrustedModuleCMinimal" label="%SGX.untrustedModule.template.title.label"
  15. description="%SGX.untrustedModule.template.title.description" help="help.html">
  16. <process type="org.eclipse.cdt.core.AddFiles">
  17. <simple name="projectName" value="$(projectName)" />
  18. <complex-array name="files">
  19. <element>
  20. <simple name="source" value="../../../sgx/SGXUntrustedModule/makefiles/c/sgx_u.without_app.mk" />
  21. <simple name="target" value="sgx/untrusted_$(baseName)/sgx_u.mk" />
  22. <simple name="replaceable" value="true" />
  23. </element>
  24. <element>
  25. <simple name="source" value="../../../sgx/SGXUntrustedModule/makefiles/common/Makefile" />
  26. <simple name="target" value="sgx/untrusted_$(baseName)/Makefile" />
  27. <simple name="replaceable" value="true" />
  28. </element>
  29. <element>
  30. <simple name="source" value="../../../sgx/SGXUntrustedModule/untrusted/untrusted_module.cpp" />
  31. <simple name="target" value="sgx/untrusted_$(baseName)/untrusted/$(baseName).c" />
  32. <simple name="replaceable" value="true" />
  33. </element>
  34. </complex-array>
  35. </process>
  36. </template>