mirror of
https://github.com/elisspace/autopsy.git
synced 2026-09-02 19:15:51 +00:00
34 lines
1.4 KiB
XML
34 lines
1.4 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!-- You may freely edit this file. See harness/README in the NetBeans platform -->
|
|
<!-- for some information on what you could do (e.g. targets to override). -->
|
|
<!-- If you delete this file and reopen the project it will be recreated. -->
|
|
<project name="org.sleuthkit.autopsy.timeline" default="netbeans" basedir=".">
|
|
<description>Builds, tests, and runs the project org.sleuthkit.autopsy.timeline.</description>
|
|
<import file="nbproject/build-impl.xml"/>
|
|
|
|
<condition property="os.family.unix">
|
|
<os family="unix"/>
|
|
</condition>
|
|
|
|
<!-- Verify that the TSK_HOME env variable is set -->
|
|
<target name="findTSK">
|
|
<property environment="env"/>
|
|
<condition property="tskFound">
|
|
<isset property="env.TSK_HOME"/>
|
|
</condition>
|
|
<fail unless="tskFound" message="TSK_HOME must be set as an environment variable."/>
|
|
<echo> TSK_HOME: ${env.TSK_HOME}</echo>
|
|
</target>
|
|
|
|
<target name="getMacTime" depends="findTSK" if="os.family.unix">
|
|
<property environment="env"/>
|
|
<copy file="${env.TSK_HOME}/tools/timeline/mactime" tofile="${basedir}/release/mactime/mactime.pl"/>
|
|
</target>
|
|
|
|
|
|
<target name="init" depends="basic-init,files-init,build-init,-javac-init">
|
|
<!-- get additional deps -->
|
|
<!-- This should only be done on non-Windows systems. <antcall target="getMacTime" /> -->
|
|
</target>
|
|
</project>
|