Vault 7: Projects

This publication series is about specific projects related to the Vault 7 main publication.
UNCLASSIFIED//FOUO
<property name="current.target" value="publish" />
<antcall target="call" />
</target>
<target name="clean" description="remove all generated files">
<property name="current.target" value="clean" />
<antcall target="call" />
<delete dir="bin" failonerror="false" />
</target>
<target name="all">
<property name="current.target" value="all" />
<antcall target="call" />
</target>
<target name="lazy">
<property name="current.target" value="lazy" />
<antcall target="call" />
</target>
<target name="test_production" description="validate project">
<property name="current.target" value="lazy" />
<antcall target="call" />
</target>
</project>
build.xml - leaf
<?xml version ="1.0"?>
<project name="Engine" default="all" basedir=".">
<property name="project.name" value="Engine"/>
<property name="project.root" value="..\.."/>
<property file="${project.root}/properties.ant" />
<!-- DEBUG -->
<!-- X86 -->
<target name="debugx86" description="build releasable version" if="$
{x86_supported}">
<exec executable="${msbuild.directory}\msbuild.exe" dir="."
failonerror="true" >
<arg line="${project.name}.sln /m /nologo /t:build
/p:Configuration="Debug" /p:Platform=Win32" />
</exec>
</target>
<!-- X64 -->
UNCLASSIFIED//FOUO