diff --git a/faxe/faxe.dll b/faxe/faxe.dll deleted file mode 100644 index e45db36..0000000 Binary files a/faxe/faxe.dll and /dev/null differ diff --git a/faxe/faxe.dll.hash b/faxe/faxe.dll.hash deleted file mode 100644 index 81b29c0..0000000 --- a/faxe/faxe.dll.hash +++ /dev/null @@ -1 +0,0 @@ -6589c85901b28a047458aa8015c1a99d \ No newline at end of file diff --git a/ndll/Windows/faxe.dll.hash b/ndll/Windows/faxe.dll.hash new file mode 100644 index 0000000..e2874b7 --- /dev/null +++ b/ndll/Windows/faxe.dll.hash @@ -0,0 +1 @@ +d1ebe785ce52bb8aab5c40eec40223a4 \ No newline at end of file diff --git a/ndll/Windows/faxe.hdll b/ndll/Windows/faxe.hdll index e45db36..8f6c5d8 100644 Binary files a/ndll/Windows/faxe.hdll and b/ndll/Windows/faxe.hdll differ diff --git a/update-hashlink-hdll.bat b/update-hashlink-hdll.bat new file mode 100644 index 0000000..4d08b38 --- /dev/null +++ b/update-hashlink-hdll.bat @@ -0,0 +1,26 @@ +@echo off +IF NOT EXIST "update-hashlink-hdll.bat" ( + echo This script can only be run from inside the same directory + pause + exit -1 +) + +echo. +cd faxe +echo Building faxe dll +:: -DHASHLINK needs to point to the local 1.10 HashLink installation +haxelib run hxcpp Build.xml -DHASHLINK=C:\HaxeToolkit\HashLink +echo. + +cd .. +echo removing old dll +del "ndll\Windows\faxe.hdll" +del "ndll\Windows\faxe.dll.hash" +echo. + +echo moving dll and hash file into hashlink directory +move "faxe\faxe.dll" "ndll\Windows\faxe.hdll" +move "faxe\faxe.dll.hash" "ndll\Windows\" +echo. + +pause