1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?xml version="1.0" encoding="ISO-8859-1"?>
- <!-- -->
- <!-- Copyright (c) 2016 Intel Corporation. -->
- <!-- -->
- <!-- All rights reserved. This program and the accompanying materials -->
- <!-- are made available under the terms of the Eclipse Public License v1.0 -->
- <!-- which accompanies this distribution, and is available at -->
- <!-- http://www.eclipse.org/legal/epl-v10.html -->
- <!-- -->
- <!-- Contributors: -->
- <!-- Intel Corporation - initial implementation and documentation -->
- <!-- -->
- <template type="ProjTempl" version="1.0" supplier="Intel"
- revision="1.0" author="Intel" id="%SGX.CXXtemplate.title.id" label="%SGX.CXXtemplate.title.label"
- description="%SGX.CXXtemplate.title.description" help="help.html">
- <process type="org.eclipse.cdt.managedbuilder.core.NewManagedProject">
- <simple name="name" value="$(projectName)" />
- <simple name="location" value="$(location)" />
- <simple name="artifactExtension" value="exe" />
- <simple name="isCProject" value="true" />
- </process>
- <process type="org.eclipse.cdt.core.CreateSourceFolder">
- <simple name="projectName" value="$(projectName)" />
- <simple name="path" value="src" />
- </process>
- <process type="org.eclipse.cdt.core.CreateFolder">
- <simple name="projectName" value="$(projectName)" />
- <simple name="path" value="resources" />
- </process>
- <process type="com.intel.sgx.SetCCNature">
- <simple name="projectName" value="$(projectName)" />
- </process>
- <process type="org.eclipse.cdt.core.AddFiles">
- <simple name="projectName" value="$(projectName)" />
- <complex-array name="files">
- <element>
- <simple name="source" value="../sgx/SGXNative/Makefile"/>
- <simple name="target" value="sgx/Makefile" />
- <simple name="replaceable" value="true" />
- </element>
- </complex-array>
- </process>
- </template>
|