Skip to content
Snippets Groups Projects
Commit 8a7adaa8 authored by Brian Carrier's avatar Brian Carrier
Browse files

Merge pull request #274 from jawallace/build-error

Check for libtsk dll instead of it's parent dir
parents 614f9132 876382bc
No related branches found
No related tags found
No related merge requests found
...@@ -60,8 +60,8 @@ ...@@ -60,8 +60,8 @@
<target name="copyWinLibs" depends="copyWinLibs64,copyWinLibs32" description="Copy windows dlls to the correct location." /> <target name="copyWinLibs" depends="copyWinLibs64,copyWinLibs32" description="Copy windows dlls to the correct location." />
<target name="checkLibDirs"> <target name="checkLibDirs">
<available property="win64.exists" type="dir" file="${basedir}/../../win32/x64/${tsk.config}" /> <available property="win64.exists" type="file" file="${basedir}/../../win32/x64/${tsk.config}/libtsk_jni.dll" />
<available property="win32.exists" type="dir" file="${basedir}/../../win32/${tsk.config}" /> <available property="win32.exists" type="file" file="${basedir}/../../win32/${tsk.config}/libtsk_jni.dll" />
</target> </target>
<target name="copyWinLibs64" depends="checkLibDirs" if="win64.exists"> <target name="copyWinLibs64" depends="checkLibDirs" if="win64.exists">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment