Skip to content

KickAss Configuration

IanM-Matrix1 edited this page Aug 29, 2020 · 1 revision

Table of Contents

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.

How I have my configuration set up

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"

Alternative method 1

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.

Alternative method 2

Copy all of the hla*.inc files into your local project directory and #import them as needed.

Clone this wiki locally