JsonCpp Library
Version 1.8.0
Source: https://github.com/open-source-parsers/jsoncpp

This library is used in mantis-top libcrossplatform.  It may need to be updated if the mantis team updates the library on their
side.  

To update this lib:
1. Go to the source URL listed above and click the "Clone or download" and select "Download ZIP"
2. Extract contents to the linkware project sub folder libs/src.  Should now have a folder like libs/src/jsoncpp-src-1.8.0
3. In Visual Studio, remove the existing project: Libraries/lib_json.
4. In Visual Studio, add an existing project under Libraries and browse to the extracted folder in step 2 and look for the
   lib_json.vcxproj project file somewhere under the makefiles folder (in this version it was in the /vs71 subfolder.  
   Select this file to add.
5. Edit the project in Visual Studio:
	A. Under General, change Output Directory and Intermediate Directory to ..\..\Debug\ and ..\..\Release\ for
	   Debug and Release Configurations respectively. 
	B. Under General, change Target name to jsonlib_d and jsonlib for Debug and Release Configurations respectively.
	C. Under C/C++ -> General, change Additional include directories to ../../include;%(AdditionalIncludeDirectories)
	   (It may already be set to this).
	D. Under Librarian -> General, change Output File to ..\..\Debug\jsonlib_d.lib for Debug Configuration and
	   ..\..\Release\jsonlib.lib for Release Configuration.   
   	E. Expand Build Events and click on Post-Build Event.  Edit Command Line and add the following commands:
		In Debug configuration:
		mkdir ..\..\..\..\include\json
		copy ..\..\include\json\*.h ..\..\..\..\include\json\
		copy ..\..\Debug\*.lib ..\..\..\..\
     		
		In Release Configuration:
		mkdir ..\..\..\..\include\json
		copy ..\..\include\json\*.h ..\..\..\..\include\json\
		copy ..\..\Release\*.lib ..\..\..\..\
	F. Make sure the Runtime Library under C/C++ -> Code Generartion is set to Multi-threaded Debug DLL (/MDd) for Debug
	   Configuration and Multi-Threaded DLL (/MD) for Release Configuration

6. Click OK and in Visual Studio click menu Fiber -> Save All.
7. Rebuild Libraries then CicadaShare then TesterCicada then Kona.
8. Run tests and commit changes