-
Notifications
You must be signed in to change notification settings - Fork 0
KickAss Configuration
IanM-Matrix1 edited this page Aug 29, 2020
·
1 revision
I apologise to all of those people using KickAss on Linux or Mac - I use Windows, so all of the pathnames in the follow examples use \\ instead of /. Just amend as appropriate for your system.
I have this KickAss_hla repo checked out of github into a local directory. I simply add this directory to the KickAss's search directory by including the following line in the KickAss.cfg file:
-libdir <full location of your repo>\KickAss_hla
This then allows the HLA files to be included automatically when you use something like the following in your code:
#import "hla.inc"
You can do the equivalent of the above by adding the path to your copy of the repo to the KickAss command line:
java.exe -jar KickAss.jar -libdir <full location of your repo>\KickAss_hla source.asm
You can then #import the files as above.
Copy all of the hla*.inc files into your local project directory and #import them as needed.