autopsy-flatpak/build-unix.xml
Peter J. Martel d720cee570 Pull CRT assembly into zip distribution
Add target that (on Windows) copies Microsoft C++ Runtime libraries and manifest from a folder specified in an enviroment variable.
2011-11-09 16:34:40 -05:00

11 lines
609 B
XML

<project name="AutopsyTSKTargets">
<target name="copyTSKLibs">
<property environment="env"/>
<copy file="${env.TSK_HOME}/bindings/java/jni/.libs/libtsk_jni.dylib" tofile="${basedir}/DataModel/release/modules/lib/libtsk_jni.dylib"/>
<!-- <copy file="${env.TSK_HOME}/win32/libewf/msvscpp/Release/libewf.dll" tofile="${basedir}/DataModel/release/modules/lib/libewf.dll"/>
<copy file="${env.TSK_HOME}/win32/libewf/msvscpp/zlib/zlib1.dll" tofile="${basedir}/DataModel/release/modules/lib/zlib1.dll"/> -->
</target>
<target name="copyExternalLibs">
</target>
</project>