Installing under Windows
------------------------------------------------------------------------------
*  Install via the kat5200-x.x.x.exe install file or use the zip file and
   unzip it where you want.
*  The Visual C++ Redistributable (x86) version is required to run.  Get it
   here:  https://www.microsoft.com/en-us/download/details.aspx?id=48145

Compiling under Visual Studo 2015 Community
------------------------------------------------------------------------------
*  Download source for the guichan, sqlite, zlib. 
*  Download development libraries for SDL and SDL_image 
*  Edit the zlib.vcxproj.filters, guichan.vcxproj.filters, and 
   sqlite.vcxproj.filters files to point to the correct source file locations
*  Start Visual C++ and open kat5200.sln
*  In the kat5200 property pages, update the User Macros with correct 
   directories for the libraries
*  Build Solution
*  Compile kat5200.iss with INNO setup to obtain the Installer

Compiling under Unix
------------------------------------------------------------------------------
*  To compile, the user must have zlib (>= 1.2.0) ,libSDL2 (>= 2.0.5), 
   libSDL2_image (>= 2.0.0), and libguichan (>=0.8.0) 
   and their respective development libraries (-dev packages) installed. 
*  Compile and make kat5200 as follows (must have root privilages):

# tar xvzf kat5200-x.x.x.tar.gz
# cd kat5200-x.x.x
# ./configure
# make
# make install 

* On debian based systems such as Ubuntu, adding the option to 'configure' 
  '--prefix=/usr is probably desired.
* Note that on many systems, instead of performing 'make install' the 
  preferred way is to perform 'checkinstall' to automatically create and 
  install a package.

Building the database (src/sql directory)
-------------------------------------------------------------------------------
*  Download TOSEC dat files for the Atari 5200 and Atari 8-bit
*  Use provided dat2sql to transform all dat files to sql files
*  Use sqlite executable (download seperately) and create kat5200.db3
*  Read Schema.sql into the database
*  Read all other sql files into the database 
