1
0
mirror of https://github.com/elisspace/autopsy.git synced 2026-08-30 08:01:57 +00:00
Files
autopsy/CoreLibs/build-mac.xml
adam-m 7037fb8403 Better integration of sigar instrumentation library. Should work on windows, linux, mac.
Added PID and virt memory used to log when application starts.
2013-03-07 14:31:22 -05:00

14 lines
493 B
XML

<project name="NativeCoreLibs">
<target name="build-native-libs" description="build native library dependencies">
<!-- sigar: note, matching jar is pulled with ivy -->
<mkdir dir="${lib.dir}"/>
<unzip src="${thirdparty.dir}/sigar/1.6.4/sigar-native.zip" dest="${lib.dir}" >
<!-- get all, rely on jna to locate <patternset>
<include name="**/*.dylib"/>
</patternset> -->
</unzip>
</target>
</project>