I just created a tiny but useful project using AutoHotKey and PHP, and I would've like to distribute it for free on the internet.
The project is made using two files:
myproject.ahk
gets triggered when I press a specific shortcut, does some preliminary operations and then callsmyproject.php
using the Run commandmyproject.php
takes some parameter frommyproject.ahk
from the command line and does some further operations such as a cURL request
I would like to distribute this project as an executable file, but I don't know how. Converting an AHK file to EXE is easy due to the integrated AutoHotKey GUI, while I found some online tools like php-compiler.net that can convert an interpreted language to a binary file.
But how to make a unique executable file? Should I build them separately and then merge them somehow?
Thanks in advance.