82 lines
2.9 KiB
XML
82 lines
2.9 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<setup:Project
|
|
xmi:version="2.0"
|
|
xmlns:xmi="http://www.omg.org/XMI"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xmlns:git="http://www.eclipse.org/oomph/setup/git/1.0"
|
|
xmlns:projects="http://www.eclipse.org/oomph/setup/projects/1.0"
|
|
xmlns:setup="http://www.eclipse.org/oomph/setup/1.0"
|
|
xmlns:setup.p2="http://www.eclipse.org/oomph/setup/p2/1.0"
|
|
xsi:schemaLocation="http://www.eclipse.org/oomph/setup/git/1.0 http://git.eclipse.org/c/oomph/org.eclipse.oomph.git/plain/setups/models/Git.ecore http://www.eclipse.org/oomph/setup/projects/1.0 http://git.eclipse.org/c/oomph/org.eclipse.oomph.git/plain/setups/models/Projects.ecore"
|
|
name="RISCV-VP"
|
|
label="RISCV-VP">
|
|
<setupTask
|
|
xsi:type="setup:CompoundTask"
|
|
name="Global Variables">
|
|
<setupTask
|
|
xsi:type="setup:VariableTask"
|
|
name="git.user.id"
|
|
defaultValue="anonymous"
|
|
label="User ID">
|
|
<description>The user ID of the MINRES account</description>
|
|
</setupTask>
|
|
<setupTask
|
|
xsi:type="setup:VariableTask"
|
|
name="git.stream"
|
|
defaultValue="master"
|
|
label="Stream to checkout">
|
|
<choice
|
|
value="master"/>
|
|
<choice
|
|
value="develop"/>
|
|
<description>Stream to checkout</description>
|
|
</setupTask>
|
|
</setupTask>
|
|
<setupTask
|
|
xsi:type="setup:EclipseIniTask"
|
|
option="-Xmx"
|
|
value="2G"
|
|
vm="true">
|
|
<description>
|
|
Set the heap space needed to work with the projects of
|
|
${scope.project.label}
|
|
</description>
|
|
</setupTask>
|
|
<setupTask
|
|
xsi:type="setup.p2:P2Task">
|
|
<requirement
|
|
name="org.eclipse.cdt.feature.group"/>
|
|
<requirement
|
|
name="com.cthing.cmakeed.feature.feature.group"/>
|
|
<requirement
|
|
name="de.marw.cdt.cmake.feature.group"/>
|
|
<requirement
|
|
name="org.eclipse.wst.jsdt.feature.feature.group"/>
|
|
<requirement
|
|
name="org.eclipse.wst.xml_ui.feature.feature.group"/>
|
|
<repository
|
|
url="https://raw.githubusercontent.com/15knots/cmake4eclipse/master/releng/comp-update/"/>
|
|
<repository
|
|
url="https://raw.githubusercontent.com/15knots/cmakeed/master/cmakeed-update/"/>
|
|
<description>
|
|
Install the tools needed in the IDE to work with the
|
|
source code for ${scope.project.label}
|
|
</description>
|
|
</setupTask>
|
|
<setupTask
|
|
xsi:type="git:GitCloneTask"
|
|
id="git.clone.riscv_vp"
|
|
remoteURI="https://${git.user.id}@git.minres.com/VP/RISCV-VP.git"
|
|
recursive="true">
|
|
<description>${scope.project.label}</description>
|
|
</setupTask>
|
|
<setupTask
|
|
xsi:type="projects:ProjectsImportTask">
|
|
<sourceLocator
|
|
rootFolder="${git.clone.riscv_vp.location}"/>
|
|
</setupTask>
|
|
<stream name="${git.stream}"
|
|
label="Stream to checkout"/>
|
|
<description>An instruction set simulator based on DBT-RISE implementing the RISC-V ISA.</description>
|
|
</setup:Project>
|